am 47983b8e: Merge "Reset System properities between tests"

* commit '47983b8e604d421aefba80962dea816da5167cb0':
  Reset System properities between tests
diff --git a/CtsTestCaseList.mk b/CtsTestCaseList.mk
index 8a37b72..3b30e0d 100644
--- a/CtsTestCaseList.mk
+++ b/CtsTestCaseList.mk
@@ -30,15 +30,17 @@
 	CtsMultiUserStorageApp
 
 cts_support_packages := \
+    CtsAccelerationTestStubs \
+    CtsDeviceAdmin \
     CtsDeviceOpenGl \
     CtsDeviceTaskswitchingAppA \
     CtsDeviceTaskswitchingAppB \
     CtsDeviceTaskswitchingControl \
     CtsDeviceUi \
-    CtsAccelerationTestStubs \
-    CtsDeviceAdmin \
+    CtsHoloDeviceApp \
     CtsMonkeyApp \
     CtsMonkeyApp2 \
+    CtsSampleDeviceApp \
     CtsSomeAccessibilityServices \
     CtsTestStubs \
     SignatureTest \
@@ -82,7 +84,6 @@
     CtsDreamsTestCases \
     CtsDrmTestCases \
     CtsEffectTestCases \
-    CtsExampleTestCases \
     CtsGestureTestCases \
     CtsGraphicsTestCases \
     CtsGraphics2TestCases \
@@ -107,6 +108,7 @@
     CtsRenderscriptTestCases \
     CtsRenderscriptGraphicsTestCases \
     CtsRsCppTestCases \
+    CtsSampleDeviceTestCases \
     CtsSaxTestCases \
     CtsSecurityTestCases \
     CtsSpeechTestCases \
@@ -124,17 +126,17 @@
 	$(cts_support_packages) \
 	$(cts_test_packages)
 
-
 # Host side only tests
 cts_host_libraries := \
-    CtsHostUi \
-    CtsHostJank \
     CtsAdbTests \
     CtsAppSecurityTests \
+    CtsHoloHostTestCases \
+    CtsHostJank \
+    CtsHostUi \
     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..8f50535 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">
@@ -218,6 +334,16 @@
             <meta-data android:name="test_category" android:value="@string/test_category_security" />
         </activity>
 
+        <activity android:name=".security.LockConfirmBypassTest"
+                android:label="@string/lock_confirm_test_title"
+                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/test_category_security" />
+        </activity>
+
         <activity android:name=".streamquality.StreamingVideoActivity"
                 android:label="@string/streaming_video"
                 android:configChanges="keyboardHidden|orientation|screenSize">
@@ -464,6 +590,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 +687,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 +815,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/intent_driven_test.xml b/apps/CtsVerifier/res/layout/intent_driven_test.xml
index 67329d4..225ad01 100644
--- a/apps/CtsVerifier/res/layout/intent_driven_test.xml
+++ b/apps/CtsVerifier/res/layout/intent_driven_test.xml
@@ -1,31 +1,27 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
-                android:layout_width="match_parent"
-                android:layout_height="match_parent"
-    >
+          android:layout_width="match_parent"
+          android:layout_height="match_parent"
+          android:orientation="vertical" >
 
-    <LinearLayout android:orientation="vertical"
-                  android:layout_width="match_parent"
-                  android:layout_height="wrap_content"
-                  android:layout_alignParentTop="true"
-                  android:padding="5dp"
-        >
+  <LinearLayout
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content" >
+    <TextView android:id="@+id/info"
+              android:layout_width="match_parent"
+              android:layout_height="wrap_content"
+              android:textSize="18sp"
+              android:padding="5dp"
+              android:text="@string/dc_start_alarm_test_info" />
 
-        <TextView android:id="@+id/info"
+    <LinearLayout android:id="@+id/buttons"
+                  android:orientation="horizontal"
                   android:layout_width="wrap_content"
-                  android:textSize="18sp"
                   android:layout_height="wrap_content"
-                  android:text="@string/dc_show_alarms_test_info"
-            />
+                  android:layout_alignParentTop="true"/>
 
-        <LinearLayout android:id="@+id/buttons"
-                      android:orientation="horizontal"
-                      android:layout_width="wrap_content"
-                      android:layout_height="wrap_content"
-                      android:layout_alignParentTop="true"/>
-
-        <include layout="@layout/pass_fail_buttons"/>
-    </LinearLayout>
+    <include layout="@layout/pass_fail_buttons"/>
+  </LinearLayout>
 
 </ScrollView>
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/nfc_hce_reader.xml b/apps/CtsVerifier/res/layout/nfc_hce_reader.xml
new file mode 100644
index 0000000..be6617e
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/nfc_hce_reader.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:orientation="vertical"
+    android:layout_width="fill_parent"
+    android:layout_height="fill_parent">
+
+
+    <Spinner
+        android:id="@+id/type_ab_selection"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"/>
+
+    <include layout="@layout/pass_fail_text" />
+
+</LinearLayout>
diff --git a/apps/CtsVerifier/res/layout/pass_fail_lockconfirm.xml b/apps/CtsVerifier/res/layout/pass_fail_lockconfirm.xml
new file mode 100644
index 0000000..222abb2
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/pass_fail_lockconfirm.xml
@@ -0,0 +1,36 @@
+<?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/lock_set_btn"
+            android:text="@string/lock_set_button_text"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content" />
+
+    <Button android:id="@+id/lock_change_btn"
+            android:text="@string/lock_change_button_text"
+            android:layout_below="@id/lock_set_btn"
+            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/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/nfc_reader_types.xml b/apps/CtsVerifier/res/values/nfc_reader_types.xml
new file mode 100644
index 0000000..9a073a4
--- /dev/null
+++ b/apps/CtsVerifier/res/values/nfc_reader_types.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <string-array name="nfc_types_array">
+    <item>Type A</item>
+    <item>Type B</item>
+    </string-array>
+</resources>
diff --git a/apps/CtsVerifier/res/values/strings.xml b/apps/CtsVerifier/res/values/strings.xml
index 854744d..00ff965 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>
@@ -276,8 +325,7 @@
         device running the emulator tests must be the candidate device running the software
         to be tested. \n\nFor each emulator test, there is a corresponding "reader test"
         in the "HCE reader tests" section. The "reader test" acts as a NFC terminal/POS
-        and makes sure the device-under-test implements card emulation correctly.
-    </string>
+        and makes sure the device-under-test implements card emulation correctly.</string>
     <string name="nfc_hce_reader_test_info">The host-based card emulation
         tests require two devices to be completed. The HCE emulator tests are used
         to actually test the host-based card emulation feature of the device-under-test. So the
@@ -286,6 +334,7 @@
         in the "HCE reader tests" section. The "reader test" acts as a NFC terminal/POS
         and makes sure the device-under-test implements card emulation correctly.
     </string>
+    <string name="nfc_hce_type_selection">By default HCE applications must run on type A. If your device is restricted to type B (for example, because of a type B only UICC), select "Type B" from the drop-down box above. Note that all tests must be completed in the same mode (either "Type A" or "Type B").</string>
     <string name="nfc_hce_please_wait">Please wait</string>
     <string name="nfc_hce_setting_up">Setting up card emulation services...</string>
 
@@ -332,6 +381,7 @@
     <string name="nfc_hce_throughput_emulator">HCE throughput test (Emulator)</string>
     <string name="nfc_hce_throughput_reader">HCE throughput test (Reader)</string>
     <string name="nfc_hce_throughput_emulator_help">This tests verifies that your HCE implementation can reach a decent throughput. While Android does not have any requirements on HCE performance, many HCE applications such as transport and payment apps do. If the average APDU roundtrip time is more than 50ms, please take a look at your implementation to see where the delay is coming from.</string>
+    <string name="nfc_hce_change_preinstalled_wallet">The device has an installed payment application that is currently set as default. To complete the test, you will be asked whether you want to make Payment Service #1 or #2 the default app. Select yes.</string>
     <string name="nfc_hce_change_default_help">You will now be asked whether you want to make Payment Service #1 the default app. Select yes.</string>
     <string name="nfc_hce_conflicting_non_payment_help">When tapping the first time, you will be shown a dialog that asks you to choose between TransportService #1 and TransportService #2. Select TransportService #2. Verify a dialog is shown that asks you to tap again to complete. Now tap again, and if communication with TransportService #2 is successfull the pass button will be enabled."</string>
     <string name="nfc_payment_service_desc">NFC Payment service</string>
@@ -363,6 +413,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 +773,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>
@@ -821,4 +926,15 @@
         2. Verify that a timer is started  and the timers UI is shown with a timer named "Start Timer Test".\n
         3. Verify that the timer rings after 30 seconds.\n
     </string>
+    
+    <!-- Strings for LockConfirmBypassTest -->
+    <string name="lock_confirm_test_title">Keyguard Password Verification</string>
+    <string name="lock_set_button_text">Set password</string>
+    <string name="lock_change_button_text">Change password</string>
+    <string name="lock_confirm_message">
+        This test verifies that the user is prompted for the current keyguard password before prompting for a new password.\n
+        \nClick the \"Set password\" button if you currently don\'t have a password set.\n
+        \nThen click the \"Change password\" button to change it. You should be prompted for the current password first. If you are not, then mark the test as failed.
+    </string>
+
 </resources>
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/IntentDrivenTestActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/IntentDrivenTestActivity.java
index 9833abd..678a338 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/IntentDrivenTestActivity.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/IntentDrivenTestActivity.java
@@ -119,6 +119,14 @@
         private final ButtonInfo[] mButtons;
 
         public TestInfo(String testId,  int title, int infoText, ButtonInfo... buttons) {
+            /** The Intent Driven Test layout {@link R.layout.intent_driven_test} is designed for
+             *  up to 2 buttons and won't render well with more buttons on small screen devices.
+             *  If you need more than 2 buttons, please change the layout so it can properly render
+             *  them even on the smallest devices.
+             */
+            if (buttons.length > 2) {
+                throw new RuntimeException("Too many buttons");
+            }
             mTestId = testId;
             mTitle = title;
             mInfoText = infoText;
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..92d41f4
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeTestActivity.java
@@ -0,0 +1,267 @@
+/*
+ * 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);
+
+        if (mState == mStatus.length - 1 && mStatus[mState] == PASS) {
+            // All tests run and pass
+            getPassButton().setEnabled(true);
+        }
+    }
+
+    /**
+     * 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/nfc/hce/ChangeDefaultEmulatorActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/ChangeDefaultEmulatorActivity.java
index f5584ec..0681f49 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/ChangeDefaultEmulatorActivity.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/ChangeDefaultEmulatorActivity.java
@@ -18,7 +18,9 @@
     final static int STATE_IDLE = 0;
     final static int STATE_SERVICE1_SETTING_UP = 1;
     final static int STATE_SERVICE2_SETTING_UP = 2;
-    final static int STATE_DEFAULT_CHANGED = 3;
+    final static int STATE_MAKING_SERVICE1_DEFAULT = 3;
+    final static int STATE_MAKING_SERVICE2_DEFAULT = 4;
+    final static int STATE_DEFAULT_CHANGED = 5;
 
     boolean mReceiverRegistered = false;
     int mState = STATE_IDLE;
@@ -49,15 +51,14 @@
         // Verify HCE service 2 is the default
         if (!mCardEmulation.isDefaultServiceForCategory(
                 PaymentService2.COMPONENT, CardEmulation.CATEGORY_PAYMENT)) {
-            // Popup dialog-box, fail test
+            mState = STATE_MAKING_SERVICE2_DEFAULT;
             AlertDialog.Builder builder = new AlertDialog.Builder(this);
-            builder.setTitle("Test failed.");
-            builder.setMessage("PaymentService2 is not the default service according " +
-                    "to CardEmulation.getDefaultServiceForCategory(). Do you have" +
-                    "another Payment application installed?");
-            builder.setPositiveButton("OK", null);
+            builder.setTitle("Note");
+            builder.setMessage(R.string.nfc_hce_change_preinstalled_wallet);
+            builder.setPositiveButton("OK", this);
             builder.show();
         } else {
+            mState = STATE_MAKING_SERVICE1_DEFAULT;
             AlertDialog.Builder builder = new AlertDialog.Builder(this);
             builder.setTitle("Note");
             builder.setMessage(R.string.nfc_hce_change_default_help);
@@ -94,16 +95,56 @@
 
     @Override
     public void onClick(DialogInterface dialog, int which) {
-        Intent changeDefault = new Intent(CardEmulation.ACTION_CHANGE_DEFAULT);
-        changeDefault.putExtra(CardEmulation.EXTRA_CATEGORY, CardEmulation.CATEGORY_PAYMENT);
-        changeDefault.putExtra(CardEmulation.EXTRA_SERVICE_COMPONENT, PaymentService1.COMPONENT);
-        startActivityForResult(changeDefault, 0);
+        if (mState == STATE_MAKING_SERVICE1_DEFAULT) {
+            Intent changeDefault = new Intent(CardEmulation.ACTION_CHANGE_DEFAULT);
+            changeDefault.putExtra(CardEmulation.EXTRA_CATEGORY, CardEmulation.CATEGORY_PAYMENT);
+            changeDefault.putExtra(CardEmulation.EXTRA_SERVICE_COMPONENT, PaymentService1.COMPONENT);
+            startActivityForResult(changeDefault, 0);
+        } else if (mState == STATE_MAKING_SERVICE2_DEFAULT) {
+            Intent changeDefault = new Intent(CardEmulation.ACTION_CHANGE_DEFAULT);
+            changeDefault.putExtra(CardEmulation.EXTRA_CATEGORY, CardEmulation.CATEGORY_PAYMENT);
+            changeDefault.putExtra(CardEmulation.EXTRA_SERVICE_COMPONENT, PaymentService2.COMPONENT);
+            startActivityForResult(changeDefault, 0);
+        }
     }
 
     @Override
     protected void onActivityResult(int requestCode, int resultCode, Intent data) {
         super.onActivityResult(requestCode, resultCode, data);
-        mState = STATE_DEFAULT_CHANGED;
-        NfcDialogs.createHceTapReaderDialog(this, null).show();
+        if (mState == STATE_MAKING_SERVICE1_DEFAULT) {
+            if (!mCardEmulation.isDefaultServiceForCategory(
+                    PaymentService1.COMPONENT, CardEmulation.CATEGORY_PAYMENT)) {
+                // Popup dialog-box, fail test
+                AlertDialog.Builder builder = new AlertDialog.Builder(this);
+                builder.setTitle("Test failed.");
+                builder.setMessage("PaymentService1 is not the default service according " +
+                        "to CardEmulation.getDefaultServiceForCategory(), verify the make " +
+                        "default implementation is correct.");
+                builder.setPositiveButton("OK", null);
+                builder.show();
+            } else {
+                mState = STATE_DEFAULT_CHANGED;
+                NfcDialogs.createHceTapReaderDialog(this, null).show();
+            }
+        } else if (mState == STATE_MAKING_SERVICE2_DEFAULT) {
+            if (!mCardEmulation.isDefaultServiceForCategory(
+                    PaymentService2.COMPONENT, CardEmulation.CATEGORY_PAYMENT)) {
+                // Popup dialog-box, fail test
+                AlertDialog.Builder builder = new AlertDialog.Builder(this);
+                builder.setTitle("Test failed.");
+                builder.setMessage("PaymentService2 is not the default service according " +
+                        "to CardEmulation.getDefaultServiceForCategory(), verify the make " +
+                        "default implementation is correct.");
+                builder.setPositiveButton("OK", null);
+                builder.show();
+            } else {
+                mState = STATE_MAKING_SERVICE1_DEFAULT;
+                AlertDialog.Builder builder = new AlertDialog.Builder(this);
+                builder.setTitle("Note");
+                builder.setMessage(R.string.nfc_hce_change_default_help);
+                builder.setPositiveButton("OK", this);
+                builder.show();
+            }
+        }
     }
 }
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/DualPaymentEmulatorActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/DualPaymentEmulatorActivity.java
index eaba131..125045f 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/DualPaymentEmulatorActivity.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/DualPaymentEmulatorActivity.java
@@ -4,6 +4,8 @@
 import android.app.AlertDialog;
 import android.content.ComponentName;
 import android.content.Context;
+import android.content.DialogInterface;
+import android.content.DialogInterface.OnClickListener;
 import android.content.Intent;
 import android.nfc.cardemulation.CardEmulation;
 import android.os.Bundle;
@@ -12,10 +14,11 @@
 import com.android.cts.verifier.nfc.NfcDialogs;
 
 @TargetApi(19)
-public class DualPaymentEmulatorActivity extends BaseEmulatorActivity {
+public class DualPaymentEmulatorActivity extends BaseEmulatorActivity implements OnClickListener {
     final static int STATE_IDLE = 0;
     final static int STATE_SERVICE1_SETTING_UP = 1;
     final static int STATE_SERVICE2_SETTING_UP = 2;
+    final static int STATE_MAKING_SERVICE2_DEFAULT = 3;
 
     boolean mReceiverRegistered = false;
     int mState = STATE_IDLE;
@@ -45,12 +48,11 @@
         // Verify HCE service 2 is the default
         if (!mCardEmulation.isDefaultServiceForCategory(
                 PaymentService2.COMPONENT, CardEmulation.CATEGORY_PAYMENT)) {
-            // Popup dialog-box, fail test
+            mState = STATE_MAKING_SERVICE2_DEFAULT;
             AlertDialog.Builder builder = new AlertDialog.Builder(this);
-            builder.setTitle("Test failed.");
-            builder.setMessage("PaymentService2 is not the default service according " +
-                    "to CardEmulation.getDefaultServiceForCategory()");
-            builder.setPositiveButton("OK", null);
+            builder.setTitle("Note");
+            builder.setMessage(R.string.nfc_hce_change_preinstalled_wallet);
+            builder.setPositiveButton("OK", this);
             builder.show();
         } else {
             NfcDialogs.createHceTapReaderDialog(this,null).show();
@@ -64,7 +66,23 @@
             unregisterReceiver(mReceiver);
         }
     }
-
+    @Override
+    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
+        super.onActivityResult(requestCode, resultCode, data);
+        if (!mCardEmulation.isDefaultServiceForCategory(
+                PaymentService2.COMPONENT, CardEmulation.CATEGORY_PAYMENT)) {
+            // Popup dialog-box, fail test
+            AlertDialog.Builder builder = new AlertDialog.Builder(this);
+            builder.setTitle("Test failed.");
+            builder.setMessage("PaymentService2 is not the default service according " +
+                    "to CardEmulation.getDefaultServiceForCategory(), verify the make " +
+                    "default implementation is correct.");
+            builder.setPositiveButton("OK", null);
+            builder.show();
+        } else {
+            NfcDialogs.createHceTapReaderDialog(this, null).show();
+        }
+    }
     public static Intent buildReaderIntent(Context context) {
         Intent readerIntent = new Intent(context, SimpleReaderActivity.class);
         readerIntent.putExtra(SimpleReaderActivity.EXTRA_APDUS,
@@ -83,5 +101,11 @@
         }
     }
 
-
+    @Override
+    public void onClick(DialogInterface dialog, int which) {
+        Intent changeDefault = new Intent(CardEmulation.ACTION_CHANGE_DEFAULT);
+        changeDefault.putExtra(CardEmulation.EXTRA_CATEGORY, CardEmulation.CATEGORY_PAYMENT);
+        changeDefault.putExtra(CardEmulation.EXTRA_SERVICE_COMPONENT, PaymentService2.COMPONENT);
+        startActivityForResult(changeDefault, 0);
+    }
 }
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/SimpleReaderActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/SimpleReaderActivity.java
index 553f730..6c15811 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/SimpleReaderActivity.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/SimpleReaderActivity.java
@@ -3,12 +3,18 @@
 import android.annotation.TargetApi;
 import android.app.AlertDialog;
 import android.content.Intent;
+import android.content.SharedPreferences;
 import android.nfc.NfcAdapter;
 import android.nfc.NfcAdapter.ReaderCallback;
 import android.nfc.tech.IsoDep;
 import android.nfc.Tag;
 import android.os.Bundle;
 import android.util.Log;
+import android.view.View;
+import android.widget.AdapterView;
+import android.widget.AdapterView.OnItemSelectedListener;
+import android.widget.ArrayAdapter;
+import android.widget.Spinner;
 import android.widget.TextView;
 
 import com.android.cts.verifier.PassFailButtons;
@@ -18,7 +24,10 @@
 import java.util.Arrays;
 
 @TargetApi(19)
-public class SimpleReaderActivity extends PassFailButtons.Activity implements ReaderCallback {
+public class SimpleReaderActivity extends PassFailButtons.Activity implements ReaderCallback,
+        OnItemSelectedListener {
+    public static final String PREFS_NAME = "HceTypePrefs";
+
     public static final String TAG = "SimpleReaderActivity";
     public static final String EXTRA_APDUS = "apdus";
     public static final String EXTRA_RESPONSES = "responses";
@@ -29,11 +38,13 @@
     String[] mResponses;
 
     TextView mTextView;
+    Spinner mSpinner;
+    SharedPreferences mPrefs;
 
     @Override
     protected void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
-        setContentView(R.layout.pass_fail_text);
+        setContentView(R.layout.nfc_hce_reader);
         setPassFailButtonClickListeners();
         getPassButton().setEnabled(false);
 
@@ -43,6 +54,20 @@
         mAdapter = NfcAdapter.getDefaultAdapter(this);
         mTextView = (TextView) findViewById(R.id.text);
         mTextView.setTextSize(12.0f);
+        mTextView.setText(R.string.nfc_hce_type_selection);
+
+        Spinner spinner = (Spinner) findViewById(R.id.type_ab_selection);
+        ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
+                R.array.nfc_types_array, android.R.layout.simple_spinner_item);
+        adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
+        spinner.setAdapter(adapter);
+        spinner.setOnItemSelectedListener(this);
+
+        mPrefs = getSharedPreferences(PREFS_NAME, 0);
+        boolean isTypeB = mPrefs.getBoolean("typeB", false);
+        if (isTypeB) {
+            spinner.setSelection(1);
+        }
     }
 
     @Override
@@ -127,4 +152,30 @@
         } finally {
         }
     }
+
+    @Override
+    public void onItemSelected(AdapterView<?> parent, View view, int position,
+            long id) {
+        if (position == 0) {
+            // Type-A
+            mAdapter.disableReaderMode(this);
+            mAdapter.enableReaderMode(this, this, NfcAdapter.FLAG_READER_NFC_A |
+                NfcAdapter.FLAG_READER_NFC_BARCODE | NfcAdapter.FLAG_READER_SKIP_NDEF_CHECK, null);
+            SharedPreferences.Editor editor = mPrefs.edit();
+            editor.putBoolean("typeB", false);
+            editor.commit();
+        } else {
+            // Type-B
+            mAdapter.disableReaderMode(this);
+            mAdapter.enableReaderMode(this, this, NfcAdapter.FLAG_READER_NFC_B |
+                    NfcAdapter.FLAG_READER_SKIP_NDEF_CHECK, null);
+            SharedPreferences.Editor editor = mPrefs.edit();
+            editor.putBoolean("typeB", true);
+            editor.commit();
+        }
+    }
+
+    @Override
+    public void onNothingSelected(AdapterView<?> parent) {
+    }
 }
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/SinglePaymentEmulatorActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/SinglePaymentEmulatorActivity.java
index e5f9f17..13b2fe8 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/SinglePaymentEmulatorActivity.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/SinglePaymentEmulatorActivity.java
@@ -4,15 +4,16 @@
 import android.app.AlertDialog;
 import android.content.ComponentName;
 import android.content.Context;
+import android.content.DialogInterface;
+import android.content.DialogInterface.OnClickListener;
 import android.content.Intent;
 import android.nfc.cardemulation.CardEmulation;
 import android.os.Bundle;
-
 import com.android.cts.verifier.R;
 import com.android.cts.verifier.nfc.NfcDialogs;
 
 @TargetApi(19)
-public class SinglePaymentEmulatorActivity extends BaseEmulatorActivity {
+public class SinglePaymentEmulatorActivity extends BaseEmulatorActivity implements OnClickListener {
     @Override
     protected void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
@@ -32,13 +33,10 @@
         // Verify HCE service 1 is the default
         if (!mCardEmulation.isDefaultServiceForCategory(
                 PaymentService1.COMPONENT, CardEmulation.CATEGORY_PAYMENT)) {
-            // Popup dialog-box, fail test
             AlertDialog.Builder builder = new AlertDialog.Builder(this);
-            builder.setTitle("Test failed.");
-            builder.setMessage("PaymentService1 is not the default service according " +
-                    "to CardEmulation.getDefaultServiceForCategory(), verify no other " +
-                    "payment HCE apps are installed.");
-            builder.setPositiveButton("OK", null);
+            builder.setTitle("Note");
+            builder.setMessage(R.string.nfc_hce_change_preinstalled_wallet);
+            builder.setPositiveButton("OK", this);
             builder.show();
         } else {
 	        NfcDialogs.createHceTapReaderDialog(this, null).show();
@@ -62,4 +60,30 @@
             getPassButton().setEnabled(true);
         }
     }
+
+    @Override
+    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
+        super.onActivityResult(requestCode, resultCode, data);
+        if (!mCardEmulation.isDefaultServiceForCategory(
+                PaymentService1.COMPONENT, CardEmulation.CATEGORY_PAYMENT)) {
+            // Popup dialog-box, fail test
+            AlertDialog.Builder builder = new AlertDialog.Builder(this);
+            builder.setTitle("Test failed.");
+            builder.setMessage("PaymentService1 is not the default service according " +
+                    "to CardEmulation.getDefaultServiceForCategory(), verify the make " +
+                    "default implementation is correct.");
+            builder.setPositiveButton("OK", null);
+            builder.show();
+        } else {
+            NfcDialogs.createHceTapReaderDialog(this, null).show();
+        }
+    }
+
+    @Override
+    public void onClick(DialogInterface dialog, int which) {
+        Intent changeDefault = new Intent(CardEmulation.ACTION_CHANGE_DEFAULT);
+        changeDefault.putExtra(CardEmulation.EXTRA_CATEGORY, CardEmulation.CATEGORY_PAYMENT);
+        changeDefault.putExtra(CardEmulation.EXTRA_SERVICE_COMPONENT, PaymentService1.COMPONENT);
+        startActivityForResult(changeDefault, 0);
+    }
 }
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/apps/CtsVerifier/src/com/android/cts/verifier/security/LockConfirmBypassTest.java b/apps/CtsVerifier/src/com/android/cts/verifier/security/LockConfirmBypassTest.java
new file mode 100644
index 0000000..a0f9c36
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/security/LockConfirmBypassTest.java
@@ -0,0 +1,69 @@
+/*
+ * 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.security;
+
+import android.app.KeyguardManager;
+import android.app.admin.DevicePolicyManager;
+import android.content.Intent;
+import android.os.Bundle;
+import android.view.View;
+import android.widget.Button;
+
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+/**
+ * Verify elimination of the vulnerability that allows using an intent (with
+ * an extra) that bypasses the confirmation step of entering the original password/pattern
+ * before creating a new password/pattern for the lockscreen.
+ *
+ * First ask the user to ensure that some pattern or password is set for the lockscreen.
+ * Then issue the intent that was used to exploit the vulnerability and ask the user
+ * if he/she was prompted for the original pattern or password. If the user wasn't prompted,
+ * the test fails.
+ */
+public class LockConfirmBypassTest extends PassFailButtons.Activity {
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+
+        // Setup the UI.
+        setContentView(R.layout.pass_fail_lockconfirm);
+        setPassFailButtonClickListeners();
+        setInfoResources(R.string.lock_confirm_test_title, R.string.lock_confirm_message, -1);
+        // Get the lock set button and attach the listener.
+        Button lockSetButton = (Button) findViewById(R.id.lock_set_btn);
+        lockSetButton.setOnClickListener(new View.OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                Intent setPasswordIntent = new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD);
+                startActivity(setPasswordIntent);
+            }
+        });
+        // Get the lock change button and attach the listener.
+        Button lockChangeButton = (Button) findViewById(R.id.lock_change_btn);
+        lockChangeButton.setOnClickListener(new View.OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                Intent setPasswordIntent = new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD);
+                setPasswordIntent.putExtra("confirm_credentials", false);
+                startActivity(setPasswordIntent);
+            }
+        });
+    }
+
+}
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/holo/Android.mk b/hostsidetests/holo/Android.mk
new file mode 100644
index 0000000..4f0c3e8
--- /dev/null
+++ b/hostsidetests/holo/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)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_JAVA_RESOURCE_DIRS := assets/$(PLATFORM_SDK_VERSION)/
+
+LOCAL_MODULE_TAGS := optional
+
+# Must match the package name in CtsTestCaseList.mk
+LOCAL_MODULE := CtsHoloHostTestCases
+
+LOCAL_JAVA_LIBRARIES := cts-tradefed ddmlib-prebuilt tradefed-prebuilt
+
+LOCAL_CTS_TEST_PACKAGE := android.host.holo
+
+include $(BUILD_CTS_HOST_JAVA_LIBRARY)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))
diff --git a/hostsidetests/holo/app/Android.mk b/hostsidetests/holo/app/Android.mk
new file mode 100644
index 0000000..a5a7bf1
--- /dev/null
+++ b/hostsidetests/holo/app/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)
+# 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 := CtsHoloDeviceApp
+
+LOCAL_SDK_VERSION := current
+
+include $(BUILD_CTS_PACKAGE)
diff --git a/hostsidetests/holo/app/AndroidManifest.xml b/hostsidetests/holo/app/AndroidManifest.xml
new file mode 100755
index 0000000..70e908c
--- /dev/null
+++ b/hostsidetests/holo/app/AndroidManifest.xml
@@ -0,0 +1,42 @@
+<?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.holo.app">
+
+    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+    <application>
+        <uses-library android:name="android.test.runner" />
+        <activity android:name=".HoloDeviceActivity" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+        <activity android:name=".DisplayInfoActivity"
+                  android:label="@string/display_info" />
+        <activity android:name=".CaptureActivity" />
+    </application>
+
+    <!--  self-instrumenting test package. -->
+    <instrumentation android:name="android.test.InstrumentationTestRunner"
+                     android:targetPackage="android.holo.app"
+                     android:label="Generates Holo reference images"/>
+
+</manifest>
+
diff --git a/hostsidetests/holo/app/res/drawable-400dpi/display_info.png b/hostsidetests/holo/app/res/drawable-400dpi/display_info.png
new file mode 100644
index 0000000..e5f1f96
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-400dpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-hdpi/display_info.png b/hostsidetests/holo/app/res/drawable-hdpi/display_info.png
new file mode 100644
index 0000000..10b3950
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-hdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-400dpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-400dpi/display_info.png
new file mode 100644
index 0000000..1b74e01
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-land-400dpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-hdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-hdpi/display_info.png
new file mode 100644
index 0000000..a665018
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-land-hdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-ldpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-ldpi/display_info.png
new file mode 100644
index 0000000..64c8f3a
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-land-ldpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-mdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-mdpi/display_info.png
new file mode 100644
index 0000000..f3e6765
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-land-mdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-tvdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-tvdpi/display_info.png
new file mode 100644
index 0000000..99de970
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-land-tvdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-xhdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-xhdpi/display_info.png
new file mode 100644
index 0000000..4c0c2b4
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-land-xhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-xxhdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-xxhdpi/display_info.png
new file mode 100644
index 0000000..c6f7fd8
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-land-xxhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-xxxhdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-xxxhdpi/display_info.png
new file mode 100644
index 0000000..7ad9b52
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-land-xxxhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-ldpi/display_info.png b/hostsidetests/holo/app/res/drawable-ldpi/display_info.png
new file mode 100644
index 0000000..af1fda5
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-ldpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-mdpi/display_info.png b/hostsidetests/holo/app/res/drawable-mdpi/display_info.png
new file mode 100644
index 0000000..4378b14
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-mdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-tvdpi/display_info.png b/hostsidetests/holo/app/res/drawable-tvdpi/display_info.png
new file mode 100644
index 0000000..d9825fb
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-tvdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-xhdpi/display_info.png b/hostsidetests/holo/app/res/drawable-xhdpi/display_info.png
new file mode 100644
index 0000000..585af2f
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-xhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-xxhdpi/display_info.png b/hostsidetests/holo/app/res/drawable-xxhdpi/display_info.png
new file mode 100644
index 0000000..255c28f
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-xxhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-xxxhdpi/display_info.png b/hostsidetests/holo/app/res/drawable-xxxhdpi/display_info.png
new file mode 100644
index 0000000..095382c
--- /dev/null
+++ b/hostsidetests/holo/app/res/drawable-xxxhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/layout/button.xml b/hostsidetests/holo/app/res/layout/button.xml
new file mode 100644
index 0000000..75c480c
--- /dev/null
+++ b/hostsidetests/holo/app/res/layout/button.xml
@@ -0,0 +1,20 @@
+<?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.
+-->
+<Button xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/button"
+        />
diff --git a/hostsidetests/holo/app/res/layout/checkbox.xml b/hostsidetests/holo/app/res/layout/checkbox.xml
new file mode 100644
index 0000000..8eeac39
--- /dev/null
+++ b/hostsidetests/holo/app/res/layout/checkbox.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
+        android:text="@string/checkbox"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
+
diff --git a/hostsidetests/holo/app/res/layout/chronometer.xml b/hostsidetests/holo/app/res/layout/chronometer.xml
new file mode 100644
index 0000000..c4ad8d3
--- /dev/null
+++ b/hostsidetests/holo/app/res/layout/chronometer.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Chronometer xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/hostsidetests/holo/app/res/layout/display_info.xml b/hostsidetests/holo/app/res/layout/display_info.xml
new file mode 100644
index 0000000..167d935
--- /dev/null
+++ b/hostsidetests/holo/app/res/layout/display_info.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.
+-->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:orientation="vertical"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    >
+    <ImageView
+        android:src="@drawable/display_info"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        />
+    <TextView
+        android:id="@+id/text"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        />
+</LinearLayout>
+
diff --git a/hostsidetests/holo/app/res/layout/holo_test.xml b/hostsidetests/holo/app/res/layout/holo_test.xml
new file mode 100644
index 0000000..0ae6953
--- /dev/null
+++ b/hostsidetests/holo/app/res/layout/holo_test.xml
@@ -0,0 +1,21 @@
+<?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.
+-->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:orientation="vertical"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:id="@+id/base_view">
+</LinearLayout>
diff --git a/hostsidetests/holo/app/res/values/strings.xml b/hostsidetests/holo/app/res/values/strings.xml
new file mode 100644
index 0000000..02b4080
--- /dev/null
+++ b/hostsidetests/holo/app/res/values/strings.xml
@@ -0,0 +1,79 @@
+<?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.
+-->
+<resources>
+    <string name="holo_test_utilities">Holo Test Utilities</string>
+
+    <string name="display_info">Display Info</string>
+    <string name="display_info_text">Density DPI: %1$d\nDensity Bucket: %2$s\nWidth DP: %3$d\nHeight DP: %4$d</string>
+
+    <string name="button">Button</string>
+    <string name="checkbox">CheckBox</string>
+    <string name="chronometer">Chronometer</string>
+    <string name="datepicker">DatePicker</string>
+    <string name="edittext">EditText</string>
+    <string name="progressbar">ProgressBar</string>
+    <string name="progressbar_small">ProgressBar Small</string>
+    <string name="progressbar_large">ProgressBar Large</string>
+    <string name="progressbar_horizontal_0">ProgressBar Horizontal 0%</string>
+    <string name="progressbar_horizontal_50">ProgressBar Horizontal 50%</string>
+    <string name="progressbar_horizontal_100">ProgressBar Horizontal 100%</string>
+    <string name="radiobutton">RadioButton</string>
+    <string name="radiobutton_checked">RadioButton Checked</string>
+    <string name="radiogroup_horizontal">RadioGroup Horizontal</string>
+    <string name="radiogroup_vertical">RadioGroup Vertical</string>
+    <string name="ratingbar_0">RatingBar 0 Stars</string>
+    <string name="ratingbar_2point5">RatingBar 2.5 Stars</string>
+    <string name="ratingbar_5">RatingBar 5 Stars</string>
+    <string name="ratingbar_0_pressed">RatingBar 0 Stars Pressed</string>
+    <string name="ratingbar_2point5_pressed">RatingBar 2.5 Stars Pressed</string>
+    <string name="ratingbar_5_pressed">RatingBar 5 Stars Pressed</string>
+    <string name="searchview">SearchView</string>
+    <string name="searchview_query">SearchView Query</string>
+    <string name="searchview_query_hint">SearchView Query Hint</string>
+    <string name="seekbar_0">SeekBar 0%</string>
+    <string name="seekbar_50">SeekBar 50%</string>
+    <string name="seekbar_100">SeekBar 100%</string>
+    <string name="spinner">Spinner</string>
+    <string name="switch_button">Switch</string>
+    <string name="switch_button_checked">Switch Checked</string>
+    <string name="tabhost">TabHost</string>
+    <string name="textview">TextView</string>
+    <string name="timepicker">TimePicker</string>
+    <string name="togglebutton">ToggleButton</string>
+    <string name="togglebutton_checked">ToggleButton Checked</string>
+    <string name="zoomcontrols">ZoomControls</string>
+
+    <string name="alertdialog_onebutton">AlertDialog One Button</string>
+    <string name="alertdialog_twobuttons">AlertDialog Two Buttons</string>
+    <string name="alertdialog_threebuttons">AlertDialog Three Buttons</string>
+    <string name="alertdialog_list">AlertDialog List</string>
+    <string name="alertdialog_singlechoice">AlertDialog Single Choice</string>
+    <string name="alertdialog_multichoice">AlertDialog Multiple Choice</string>
+    <string name="progressdialog_spinner">ProgressDialog Spinner</string>
+    <string name="progressdialog_horizontal">ProgressDialog Horizontal</string>
+
+    <string name="color_blue_bright">Bright Blue Color</string>
+    <string name="color_blue_dark">Dark Blue Color</string>
+    <string name="color_blue_light">Light Blue Color</string>
+    <string name="color_green_dark">Dark Green Color</string>
+    <string name="color_green_light">Light Green Color</string>
+    <string name="color_orange_dark">Dark Orange Color</string>
+    <string name="color_orange_light">Light Orange Color</string>
+    <string name="color_purple">Purple Color</string>
+    <string name="color_red_dark">Dark Red Color</string>
+    <string name="color_red_light">Light Red Color</string>
+
+</resources>
diff --git a/hostsidetests/holo/app/src/android/holo/app/CaptureActivity.java b/hostsidetests/holo/app/src/android/holo/app/CaptureActivity.java
new file mode 100644
index 0000000..9551877
--- /dev/null
+++ b/hostsidetests/holo/app/src/android/holo/app/CaptureActivity.java
@@ -0,0 +1,87 @@
+/*
+ * 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.holo.app;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.os.Bundle;
+
+import java.util.concurrent.CountDownLatch;
+
+/**
+ * Iterates through all themes and all layouts, starting the Activity to capture the images.
+ */
+public class CaptureActivity extends Activity {
+
+    private static final int REQUEST_CODE = 1;
+
+    private static final int NUM_THEMES = 24;
+
+    private static final int NUM_LAYOUTS = 5;
+
+    private final CountDownLatch mLatch = new CountDownLatch(1);
+
+    private int mCurrentTheme = 0;
+
+    private int mCurrentLayout = 0;
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        generateNextImage();
+    }
+
+    /**
+     * Starts the activity to generate the next image.
+     */
+    private void generateNextImage() {
+        Intent intent = new Intent(this, HoloDeviceActivity.class);
+        intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
+        intent.putExtra(HoloDeviceActivity.EXTRA_THEME, mCurrentTheme);
+        intent.putExtra(HoloDeviceActivity.EXTRA_LAYOUT, mCurrentLayout);
+        startActivityForResult(intent, REQUEST_CODE);
+    }
+
+    @Override
+    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
+        if (requestCode == REQUEST_CODE) {
+            if (resultCode == RESULT_OK) {
+                mCurrentLayout++;
+                if (mCurrentLayout >= NUM_LAYOUTS) {
+                    mCurrentLayout = 0;
+                    mCurrentTheme++;
+                }
+                if (mCurrentTheme < NUM_THEMES) {
+                    generateNextImage();
+                } else {
+                    finish();
+                }
+            } else {
+                finish();
+            }
+        }
+    }
+
+    public void finish() {
+        mLatch.countDown();
+        super.finish();
+    }
+
+    public void waitForCompletion() throws InterruptedException {
+        mLatch.await();
+    }
+}
diff --git a/hostsidetests/holo/app/src/android/holo/app/CaptureHolo.java b/hostsidetests/holo/app/src/android/holo/app/CaptureHolo.java
new file mode 100644
index 0000000..228cd9c
--- /dev/null
+++ b/hostsidetests/holo/app/src/android/holo/app/CaptureHolo.java
@@ -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.
+ */
+
+package android.holo.app;
+
+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 Exception {
+        setActivityInitialTouchMode(true);
+        CaptureActivity activity = getActivity();
+        KeyguardManager keyguardManager =
+                (KeyguardManager) activity.getSystemService(Context.KEYGUARD_SERVICE);
+        keyguardManager.newKeyguardLock("holo_capture").disableKeyguard();
+        activity.waitForCompletion();
+    }
+}
diff --git a/hostsidetests/holo/app/src/android/holo/app/DisplayInfoActivity.java b/hostsidetests/holo/app/src/android/holo/app/DisplayInfoActivity.java
new file mode 100644
index 0000000..69c3914
--- /dev/null
+++ b/hostsidetests/holo/app/src/android/holo/app/DisplayInfoActivity.java
@@ -0,0 +1,81 @@
+/*
+ * 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.holo.app;
+
+import android.app.Activity;
+import android.holo.app.R;
+import android.os.Bundle;
+import android.util.DisplayMetrics;
+import android.view.Display;
+import android.view.WindowManager;
+import android.widget.TextView;
+
+/**
+ * An activity to display information about the device, including density bucket and dimensions.
+ */
+public class DisplayInfoActivity extends Activity {
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.display_info);
+
+        WindowManager windowManager = (WindowManager) getSystemService(WINDOW_SERVICE);
+        Display display = windowManager.getDefaultDisplay();
+        DisplayMetrics metrics = new DisplayMetrics();
+        display.getMetrics(metrics);
+
+        DisplayMetrics dm = getResources().getDisplayMetrics();
+        int width = Math.round(dm.widthPixels / dm.density);
+        int height = Math.round(dm.heightPixels / dm.density);
+
+        TextView text = (TextView) findViewById(R.id.text);
+        text.setText(getString(R.string.display_info_text, metrics.densityDpi,
+                getScreenDensityBucket(metrics), width, height));
+    }
+
+    private static String getScreenDensityBucket(DisplayMetrics metrics) {
+        switch (metrics.densityDpi) {
+            case DisplayMetrics.DENSITY_LOW:
+                return "ldpi";
+
+            case DisplayMetrics.DENSITY_MEDIUM:
+                return "mdpi";
+
+            case DisplayMetrics.DENSITY_HIGH:
+                return "hdpi";
+
+            case DisplayMetrics.DENSITY_XHIGH:
+                return "xhdpi";
+
+            case DisplayMetrics.DENSITY_400:
+                return "400dpi";
+
+            case DisplayMetrics.DENSITY_XXHIGH:
+                return "xxhdpi";
+
+            case DisplayMetrics.DENSITY_XXXHIGH:
+                return "xxxhdpi";
+
+            case DisplayMetrics.DENSITY_TV:
+                return "tvdpi";
+
+            default:
+                return "" + metrics.densityDpi;
+        }
+    }
+}
diff --git a/hostsidetests/holo/app/src/android/holo/app/HoloDeviceActivity.java b/hostsidetests/holo/app/src/android/holo/app/HoloDeviceActivity.java
new file mode 100644
index 0000000..bfaf865
--- /dev/null
+++ b/hostsidetests/holo/app/src/android/holo/app/HoloDeviceActivity.java
@@ -0,0 +1,261 @@
+/*
+ * 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.holo.app;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.graphics.Bitmap;
+import android.graphics.Bitmap.CompressFormat;
+import android.graphics.Canvas;
+import android.holo.app.R;
+import android.os.AsyncTask;
+import android.os.Environment;
+import android.os.Bundle;
+import android.os.Handler;
+import android.util.Log;
+import android.view.View;
+import android.widget.CheckBox;
+import android.widget.LinearLayout;
+
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.lang.Override;
+
+/**
+ * A activity which display various UI elements with Holo theme.
+ */
+public class HoloDeviceActivity extends Activity {
+
+    public static final String EXTRA_THEME = "holo_theme_extra";
+
+    public static final String EXTRA_LAYOUT = "holo_layout_extra";
+
+    public static final String EXTRA_TIMEOUT = "holo_timeout_extra";
+
+    private static final String TAG = HoloDeviceActivity.class.getSimpleName();
+
+    private static final int TIMEOUT = 1 * 1000;//1 sec
+
+    private View mView;
+
+    private String mName;
+
+    private Bitmap mBitmap;
+
+    @Override
+    public void onCreate(Bundle icicle) {
+        super.onCreate(icicle);
+        setUpUi(getIntent());
+    }
+
+    @Override
+    public void onNewIntent(Intent intent) {
+        super.onNewIntent(intent);
+        setUpUi(intent);
+    }
+
+    /**
+     * Configures the UI with the given intent
+     */
+    private void setUpUi(Intent intent) {
+        final Theme theme = themes[intent.getIntExtra(EXTRA_THEME, 0)];
+        final Layout layout = layouts[intent.getIntExtra(EXTRA_LAYOUT, 0)];
+        final int timeout = intent.getIntExtra(EXTRA_TIMEOUT, TIMEOUT);
+
+        setTheme(theme.mId);
+        setContentView(R.layout.holo_test);
+
+        final LinearLayout baseView = (LinearLayout) findViewById(R.id.base_view);
+
+        mView = getLayoutInflater().inflate(layout.mId, baseView, false);
+        baseView.addView(mView);
+        if (layout.mModifier != null) {
+            layout.mModifier.modify(mView);
+        }
+        mView.setFocusable(false);
+        mName = String.format("%s_%s", theme.mName, layout.mName);
+
+        final Handler handler = new Handler();
+        handler.postDelayed(new Runnable() {
+            @Override
+            public void run() {
+                new GenerateBitmapTask().execute();
+            }
+        }, timeout);
+        setResult(RESULT_CANCELED);//On success will be changed to OK
+    }
+
+    /**
+     * A task which gets the UI element to render to a bitmap and then saves that as a png
+     * asynchronously
+     */
+    private class GenerateBitmapTask extends AsyncTask<Void, Void, Boolean> {
+
+        @Override
+        protected void onPreExecute() {
+            final View v = mView;
+            mBitmap = Bitmap.createBitmap(v.getWidth(), v.getHeight(), Bitmap.Config.ARGB_8888);
+            final Canvas canvas = new Canvas(mBitmap);
+            v.draw(canvas);
+        }
+
+        @Override
+        protected Boolean doInBackground(Void... ignored) {
+            if (!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
+                Log.i(TAG, "External storage for saving bitmaps is not mounted");
+                return false;
+            }
+            final File dir = new File(Environment.getExternalStorageDirectory(), "cts-holo-assets");
+            dir.mkdirs();
+            boolean success = false;
+            try {
+                final File file = new File(dir, mName + ".png");
+                FileOutputStream stream = null;
+                try {
+                    stream = new FileOutputStream(file);
+                    mBitmap.compress(CompressFormat.PNG, 100, stream);
+                } finally {
+                    if (stream != null) {
+                        stream.close();
+                    }
+                }
+                success = true;
+            } catch (Exception e) {
+                Log.e(TAG, e.getMessage());
+            } finally {
+                mBitmap.recycle();
+                mBitmap = null;
+            }
+            return success;
+        }
+
+        @Override
+        protected void onPostExecute(Boolean success) {
+            Log.i(TAG, success ? "OKAY" : "ERROR");
+            setResult(RESULT_OK);
+            finish();
+        }
+    }
+
+    /**
+     * A class to encapsulate information about a holo theme.
+     */
+    private static class Theme {
+
+        public final int mId;
+
+        public final String mName;
+
+        private Theme(int id, String name) {
+            mId = id;
+            mName = name;
+        }
+    }
+
+    private static final Theme[] themes = {
+            new Theme(android.R.style.Theme_Holo,
+                    "holo"),
+            new Theme(android.R.style.Theme_Holo_Dialog,
+                    "holo_dialog"),
+            new Theme(android.R.style.Theme_Holo_Dialog_MinWidth,
+                    "holo_dialog_minwidth"),
+            new Theme(android.R.style.Theme_Holo_Dialog_NoActionBar,
+                    "holo_dialog_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_Dialog_NoActionBar_MinWidth,
+                    "holo_dialog_noactionbar_minwidth"),
+            new Theme(android.R.style.Theme_Holo_DialogWhenLarge,
+                    "holo_dialogwhenlarge"),
+            new Theme(android.R.style.Theme_Holo_DialogWhenLarge_NoActionBar,
+                    "holo_dialogwhenlarge_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_InputMethod,
+                    "holo_inputmethod"),
+            new Theme(android.R.style.Theme_Holo_Light,
+                    "holo_light"),
+            new Theme(android.R.style.Theme_Holo_Light_DarkActionBar,
+                    "holo_light_darkactionbar"),
+            new Theme(android.R.style.Theme_Holo_Light_Dialog,
+                    "holo_light_dialog"),
+            new Theme(android.R.style.Theme_Holo_Light_Dialog_MinWidth,
+                    "holo_light_dialog_minwidth"),
+            new Theme(android.R.style.Theme_Holo_Light_Dialog_NoActionBar,
+                    "holo_light_dialog_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_Light_Dialog_NoActionBar_MinWidth,
+                    "holo_light_dialog_noactionbar_minwidth"),
+            new Theme(android.R.style.Theme_Holo_Light_DialogWhenLarge,
+                    "holo_light_dialogwhenlarge"),
+            new Theme(android.R.style.Theme_Holo_Light_DialogWhenLarge_NoActionBar,
+                    "holo_light_dialogwhenlarge_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_Light_NoActionBar,
+                    "holo_light_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_Light_NoActionBar_Fullscreen,
+                    "holo_light_noactionbar_fullscreen"),
+            new Theme(android.R.style.Theme_Holo_Light_Panel,
+                    "holo_light_panel"),
+            new Theme(android.R.style.Theme_Holo_NoActionBar,
+                    "holo_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_NoActionBar_Fullscreen,
+                    "holo_noactionbar_fullscreen"),
+            new Theme(android.R.style.Theme_Holo_Panel,
+                    "holo_panel"),
+            new Theme(android.R.style.Theme_Holo_Wallpaper,
+                    "holo_wallpaper"),
+            new Theme(android.R.style.Theme_Holo_Wallpaper_NoTitleBar,
+                    "holo_wallpaper_notitlebar")
+    };
+
+    /**
+     * A class to encapsulate information about a holo layout.
+     */
+    private static class Layout {
+
+        public final int mId;
+
+        public final String mName;
+
+        public final Modifier mModifier;
+
+        private Layout(int id, String name, Modifier modifier) {
+            mId = id;
+            mName = name;
+            mModifier = modifier;
+        }
+    }
+
+    private static interface Modifier {
+
+        public void modify(View v);
+    }
+
+    private static final Layout[] layouts = {
+            new Layout(R.layout.button, "button", null),
+            new Layout(R.layout.button, "button_pressed", new Modifier() {
+                @Override
+                public void modify(View v) {
+                    v.setPressed(true);
+                }
+            }),
+            new Layout(R.layout.checkbox, "checkbox", null),
+            new Layout(R.layout.checkbox, "checkbox_checked", new Modifier() {
+                @Override
+                public void modify(View v) {
+                    ((CheckBox) v).setChecked(true);
+                }
+            }),
+            new Layout(R.layout.chronometer, "chronometer", null)
+    };
+}
diff --git a/hostsidetests/holo/assets/17/hdpi.zip b/hostsidetests/holo/assets/17/hdpi.zip
new file mode 100644
index 0000000..dec6ed0
--- /dev/null
+++ b/hostsidetests/holo/assets/17/hdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/17/ldpi.zip b/hostsidetests/holo/assets/17/ldpi.zip
new file mode 100644
index 0000000..5b706fc
--- /dev/null
+++ b/hostsidetests/holo/assets/17/ldpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/17/mdpi.zip b/hostsidetests/holo/assets/17/mdpi.zip
new file mode 100644
index 0000000..9390873
--- /dev/null
+++ b/hostsidetests/holo/assets/17/mdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/17/tvdpi.zip b/hostsidetests/holo/assets/17/tvdpi.zip
new file mode 100644
index 0000000..1e2ccc6
--- /dev/null
+++ b/hostsidetests/holo/assets/17/tvdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/17/xhdpi.zip b/hostsidetests/holo/assets/17/xhdpi.zip
new file mode 100644
index 0000000..fdf1ae7
--- /dev/null
+++ b/hostsidetests/holo/assets/17/xhdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/17/xxhdpi.zip b/hostsidetests/holo/assets/17/xxhdpi.zip
new file mode 100644
index 0000000..ab5bc6b
--- /dev/null
+++ b/hostsidetests/holo/assets/17/xxhdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/18/hdpi.zip b/hostsidetests/holo/assets/18/hdpi.zip
new file mode 100644
index 0000000..79e045f
--- /dev/null
+++ b/hostsidetests/holo/assets/18/hdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/18/ldpi.zip b/hostsidetests/holo/assets/18/ldpi.zip
new file mode 100644
index 0000000..4321274
--- /dev/null
+++ b/hostsidetests/holo/assets/18/ldpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/18/mdpi.zip b/hostsidetests/holo/assets/18/mdpi.zip
new file mode 100644
index 0000000..9872b16
--- /dev/null
+++ b/hostsidetests/holo/assets/18/mdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/18/tvdpi.zip b/hostsidetests/holo/assets/18/tvdpi.zip
new file mode 100644
index 0000000..f18d019
--- /dev/null
+++ b/hostsidetests/holo/assets/18/tvdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/18/xhdpi.zip b/hostsidetests/holo/assets/18/xhdpi.zip
new file mode 100644
index 0000000..a1f2c65
--- /dev/null
+++ b/hostsidetests/holo/assets/18/xhdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/18/xxhdpi.zip b/hostsidetests/holo/assets/18/xxhdpi.zip
new file mode 100644
index 0000000..331baf3
--- /dev/null
+++ b/hostsidetests/holo/assets/18/xxhdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/18/xxxhdpi.zip b/hostsidetests/holo/assets/18/xxxhdpi.zip
new file mode 100644
index 0000000..8fc56ae
--- /dev/null
+++ b/hostsidetests/holo/assets/18/xxxhdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/19/400dpi.zip b/hostsidetests/holo/assets/19/400dpi.zip
new file mode 100644
index 0000000..bc29da9
--- /dev/null
+++ b/hostsidetests/holo/assets/19/400dpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/19/hdpi.zip b/hostsidetests/holo/assets/19/hdpi.zip
new file mode 100644
index 0000000..ecb45e0
--- /dev/null
+++ b/hostsidetests/holo/assets/19/hdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/19/ldpi.zip b/hostsidetests/holo/assets/19/ldpi.zip
new file mode 100644
index 0000000..cd5dee6
--- /dev/null
+++ b/hostsidetests/holo/assets/19/ldpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/19/mdpi.zip b/hostsidetests/holo/assets/19/mdpi.zip
new file mode 100644
index 0000000..80bb193
--- /dev/null
+++ b/hostsidetests/holo/assets/19/mdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/19/tvdpi.zip b/hostsidetests/holo/assets/19/tvdpi.zip
new file mode 100644
index 0000000..1392010
--- /dev/null
+++ b/hostsidetests/holo/assets/19/tvdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/19/xhdpi.zip b/hostsidetests/holo/assets/19/xhdpi.zip
new file mode 100644
index 0000000..eb973da
--- /dev/null
+++ b/hostsidetests/holo/assets/19/xhdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/19/xxhdpi.zip b/hostsidetests/holo/assets/19/xxhdpi.zip
new file mode 100644
index 0000000..6f3f018
--- /dev/null
+++ b/hostsidetests/holo/assets/19/xxhdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/assets/19/xxxhdpi.zip b/hostsidetests/holo/assets/19/xxxhdpi.zip
new file mode 100644
index 0000000..1d6b303
--- /dev/null
+++ b/hostsidetests/holo/assets/19/xxxhdpi.zip
Binary files differ
diff --git a/hostsidetests/holo/src/android/holo/cts/ComparisonTask.java b/hostsidetests/holo/src/android/holo/cts/ComparisonTask.java
new file mode 100644
index 0000000..36f3759
--- /dev/null
+++ b/hostsidetests/holo/src/android/holo/cts/ComparisonTask.java
@@ -0,0 +1,150 @@
+/*
+ * 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.holo.cts;
+
+import com.android.ddmlib.Log;
+import com.android.ddmlib.Log.LogLevel;
+import com.android.tradefed.device.ITestDevice;
+
+import java.awt.Color;
+import java.awt.image.BufferedImage;
+import java.io.File;
+import java.lang.String;
+import java.util.concurrent.Callable;
+
+import javax.imageio.ImageIO;
+
+/**
+ * Compares the images generated by the device with the reference images.
+ */
+public class ComparisonTask implements Callable<Boolean> {
+
+    private static final String TAG = ComparisonTask.class.getSimpleName();
+
+    private static final String DEVICE_PATH = "/storage/emulated/legacy/cts-holo-assets/%s.png";
+
+    private static final int IMAGE_THRESHOLD = 2;
+
+    private final ITestDevice mDevice;
+
+    private final File mReference;
+
+    private final String mName;
+
+    public ComparisonTask(ITestDevice device, File reference, String name) {
+        mDevice = device;
+        mReference = reference;
+        mName = name;
+    }
+
+    public Boolean call() {
+        boolean success = false;
+        File generated = null;
+        try {
+            generated = File.createTempFile("gen_" + mName, ".png");
+
+            mDevice.pullFile(String.format(DEVICE_PATH, mName), generated);
+
+            final BufferedImage ref = ImageIO.read(mReference);
+            final BufferedImage gen = ImageIO.read(generated);
+            if (compare(ref, gen, IMAGE_THRESHOLD)) {
+                success = true;
+            } else {
+                File diff = File.createTempFile("diff_" + mName, ".png");
+                createDiff(ref, gen, diff);
+                Log.logAndDisplay(LogLevel.INFO, TAG, "Diff created: " + diff.getPath());
+            }
+        } catch (Exception e) {
+            Log.logAndDisplay(LogLevel.ERROR, TAG, e.toString());
+        } finally {
+            if (generated != null) {
+                generated.delete();
+            }
+        }
+        return success;
+    }
+
+    private static boolean compare(BufferedImage reference, BufferedImage generated, int threshold) {
+        final int w = generated.getWidth();
+        final int h = generated.getHeight();
+        if (w != reference.getWidth() || h != reference.getHeight()) {
+            return false;
+        }
+
+        for (int i = 0; i < w; i++) {
+            for (int j = 0; j < h; j++) {
+                final int p1 = reference.getRGB(i, j);
+                final int p2 = generated.getRGB(i, j);
+                final int dr = (p1 & 0x000000FF) - (p2 & 0x000000FF);
+                final int dg = ((p1 & 0x0000FF00) - (p2 & 0x0000FF00)) >> 8;
+                final int db = ((p1 & 0x00FF0000) - (p2 & 0x00FF0000)) >> 16;
+                final int da = ((p1 & 0xFF000000) - (p2 & 0xFF000000)) >> 24;
+
+                if (Math.abs(db) > threshold ||
+                        Math.abs(dg) > threshold ||
+                        Math.abs(dr) > threshold ||
+                        Math.abs(da) > threshold) {
+                    return false;
+                }
+            }
+        }
+        return true;
+    }
+
+    private static void createDiff(BufferedImage image1, BufferedImage image2, File out)
+            throws Exception {
+        final int w1 = image1.getWidth();
+        final int h1 = image1.getHeight();
+        final int w2 = image2.getWidth();
+        final int h2 = image2.getHeight();
+        final int width = Math.max(w1, w2);
+        final int height = Math.max(h1, h2);
+        // The diff will contain image1, image2 and the difference between the two.
+        final BufferedImage diff = new BufferedImage(width * 3, height, BufferedImage.TYPE_INT_ARGB);
+
+        for (int i = 0; i < width; i++) {
+            for (int j = 0; j < height; j++) {
+                final boolean inBounds1 = i < w1 && j < h1;
+                final boolean inBounds2 = i < w2 && j < h2;
+                int color1 = Color.WHITE.getRGB();
+                int color2 = Color.WHITE.getRGB();
+                int color3;
+                if (inBounds1 && inBounds2) {
+                    color1 = image1.getRGB(i, j);
+                    color2 = image2.getRGB(i, j);
+                    color3 = color1 == color2 ? color1 : Color.RED.getRGB();
+                } else if (inBounds1 && !inBounds2) {
+                    color1 = image1.getRGB(i, j);
+                    color3 = Color.BLUE.getRGB();
+                } else if (!inBounds1 && inBounds2) {
+                    color2 = image2.getRGB(i, j);
+                    color3 = Color.GREEN.getRGB();
+                } else {
+                    color3 = Color.MAGENTA.getRGB();
+                }
+                int x = i;
+                diff.setRGB(x, j, color1);
+                x += width;
+                diff.setRGB(x, j, color2);
+                x += width;
+                diff.setRGB(x, j, color3);
+            }
+        }
+        ImageIO.write(diff, "png", out);
+    }
+
+}
diff --git a/hostsidetests/holo/src/android/holo/cts/HoloHostTest.java b/hostsidetests/holo/src/android/holo/cts/HoloHostTest.java
new file mode 100644
index 0000000..5de3030
--- /dev/null
+++ b/hostsidetests/holo/src/android/holo/cts/HoloHostTest.java
@@ -0,0 +1,274 @@
+/*
+ * 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.holo.cts;
+
+import com.android.cts.tradefed.build.CtsBuildHelper;
+import com.android.ddmlib.Log;
+import com.android.ddmlib.Log.LogLevel;
+import com.android.ddmlib.IShellOutputReceiver;
+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.io.FileOutputStream;
+import java.lang.String;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Scanner;
+import java.util.concurrent.Callable;
+import java.util.concurrent.Executors;
+import java.util.concurrent.ExecutorCompletionService;
+import java.util.concurrent.ExecutorService;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipInputStream;
+
+/**
+ * Test to check the Holo theme has not been changed.
+ */
+public class HoloHostTest extends DeviceTestCase implements IBuildReceiver {
+
+    private static final String TAG = HoloHostTest.class.getSimpleName();
+
+    private static final int CAPTURE_TIMEOUT = 1 * 1000;//1sec in ms
+
+    private static final int ADB_TIMEOUT = 10 * 60 * 1000;//10mins in ms
+
+    /** The package name of the APK. */
+    private static final String PACKAGE = "android.holo.app";
+
+    /** The file name of the APK. */
+    private static final String APK = "CtsHoloDeviceApp.apk";
+
+    /** The class name of the main activity in the APK. */
+    private static final String CLASS = "HoloDeviceActivity";
+
+    /** The command to launch the main activity. */
+    private static final String START_CMD = String.format(
+            "am start -W -a android.intent.action.MAIN -n %s/%s.%s", PACKAGE, PACKAGE, CLASS);
+
+    private static final String STOP_CMD = String.format("am force-stop %s", PACKAGE);
+
+    private static final String DENSITY_PROP = "ro.sf.lcd_density";
+
+    // Intent extras
+    protected final static String INTENT_STRING_EXTRA = " --es %s %s";
+
+    protected final static String INTENT_BOOLEAN_EXTRA = " --ez %s %b";
+
+    protected final static String INTENT_INTEGER_EXTRA = " --ei %s %d";
+
+    // Intent extra keys
+    private static final String EXTRA_THEME = "holo_theme_extra";
+
+    private static final String EXTRA_LAYOUT = "holo_layout_extra";
+
+    private static final String EXTRA_TIMEOUT = "holo_timeout_extra";
+
+    private static final String[] THEMES = {
+            "holo",
+            "holo_dialog",
+            "holo_dialog_minwidth",
+            "holo_dialog_noactionbar",
+            "holo_dialog_noactionbar_minwidth",
+            "holo_dialogwhenlarge",
+            "holo_dialogwhenlarge_noactionbar",
+            "holo_inputmethod",
+            "holo_light",
+            "holo_light_darkactionbar",
+            "holo_light_dialog",
+            "holo_light_dialog_minwidth",
+            "holo_light_dialog_noactionbar",
+            "holo_light_dialog_noactionbar_minwidth",
+            "holo_light_dialogwhenlarge",
+            "holo_light_dialogwhenlarge_noactionbar",
+            "holo_light_noactionbar",
+            "holo_light_noactionbar_fullscreen",
+            "holo_light_panel",
+            "holo_noactionbar",
+            "holo_noactionbar_fullscreen",
+            "holo_panel",
+            "holo_wallpaper",
+            "holo_wallpaper_notitlebar"
+    };
+
+    private final int NUM_THEMES = THEMES.length;
+
+    private static final String[] LAYOUTS = {
+            "button",
+            "button_pressed",
+            "checkbox",
+            "checkbox_checked",
+            "chronometer"
+    };
+
+    private final int NUM_LAYOUTS = LAYOUTS.length;
+
+    private final HashMap<String, File> mReferences = new HashMap<String, File>();
+
+    /** A reference to the build. */
+    private CtsBuildHelper mBuild;
+
+    /** A reference to the device under test. */
+    private ITestDevice mDevice;
+
+    private ExecutorService mExecutionService;
+
+    private ExecutorCompletionService<Boolean> mCompletionService;
+
+    @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);
+
+        final String zip = String.format("/%s.zip",
+                getDensityBucket(Integer.parseInt(mDevice.getProperty(DENSITY_PROP))));
+        Log.logAndDisplay(LogLevel.INFO, TAG, "Loading resources from " + zip);
+
+        final ZipInputStream in = new ZipInputStream(this.getClass().getResourceAsStream(zip));
+        try {
+            ZipEntry ze;
+            final byte[] buffer = new byte[1024];
+            while ((ze = in.getNextEntry()) != null) {
+                final String name = ze.getName();
+                final File tmp = File.createTempFile("ref_" + name, ".png");
+                final FileOutputStream out = new FileOutputStream(tmp);
+                int count;
+                while ((count = in.read(buffer)) != -1) {
+                    out.write(buffer, 0, count);
+                }
+                out.flush();
+                out.close();
+                mReferences.put(name, tmp);
+            }
+        } finally {
+            in.close();
+        }
+
+        mExecutionService = Executors.newFixedThreadPool(2);// 2 worker threads
+        mCompletionService = new ExecutorCompletionService<Boolean>(mExecutionService);
+    }
+
+    @Override
+    protected void tearDown() throws Exception {
+        // Delete the temp files
+        for (File ref : mReferences.values()) {
+            ref.delete();
+        }
+        mExecutionService.shutdown();
+        super.tearDown();
+    }
+
+    public void testHoloThemes() throws Exception {
+        int numTasks = 0;
+        for (int i = 0; i < NUM_THEMES; i++) {
+            final String themeName = THEMES[i];
+            for (int j = 0; j < NUM_LAYOUTS; j++) {
+                final String name = String.format("%s_%s", themeName, LAYOUTS[j]);
+                if (runCapture(i, j)) {
+                    final File ref = mReferences.get(name + ".png");
+                    mCompletionService.submit(new ComparisonTask(mDevice, ref, name));
+                    numTasks++;
+                } else {
+                    Log.logAndDisplay(LogLevel.ERROR, TAG, "Capture failed: " + name);
+                }
+            }
+        }
+        boolean success = true;
+        for (int i = 0; i < numTasks; i++) {
+            success = mCompletionService.take().get() && success;
+        }
+        assertTrue("Failures in Holo test", success);
+    }
+
+    private boolean runCapture(int themeId, int layoutId) throws Exception {
+        final StringBuilder sb = new StringBuilder(START_CMD);
+        sb.append(String.format(INTENT_INTEGER_EXTRA, EXTRA_THEME, themeId));
+        sb.append(String.format(INTENT_INTEGER_EXTRA, EXTRA_LAYOUT, layoutId));
+        sb.append(String.format(INTENT_INTEGER_EXTRA, EXTRA_TIMEOUT, CAPTURE_TIMEOUT));
+        final String startCommand = sb.toString();
+        // Clear logcat
+        mDevice.executeAdbCommand("logcat", "-c");
+        // Stop any existing instances
+        mDevice.executeShellCommand(STOP_CMD);
+        // Start activity
+        mDevice.executeShellCommand(startCommand);
+
+        boolean success = false;
+        boolean waiting = true;
+        while (waiting) {
+            // Dump logcat.
+            final String logs = mDevice.executeAdbCommand("logcat", "-d", CLASS + ":I", "*:S");
+            // Search for string.
+            final Scanner in = new Scanner(logs);
+            while (in.hasNextLine()) {
+                final String line = in.nextLine();
+                if (line.startsWith("I/" + CLASS)) {
+                    final String s = line.split(":")[1].trim();
+                    if (s.equals("OKAY")) {
+                        success = true;
+                        waiting = false;
+                    } else if (s.equals("ERROR")) {
+                        success = false;
+                        waiting = false;
+                    }
+                }
+            }
+        }
+
+        return success;
+    }
+
+    private static String getDensityBucket(int density) {
+        switch (density) {
+            case 120:
+                return "ldpi";
+            case 160:
+                return "mdpi";
+            case 213:
+                return "tvdpi";
+            case 240:
+                return "hdpi";
+            case 320:
+                return "xhdpi";
+            case 400:
+                return "400dpi";
+            case 480:
+                return "xxhdpi";
+            case 640:
+                return "xxxhdpi";
+            default:
+                return "" + density;
+        }
+    }
+}
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/admin/src/android/admin/cts/DeviceAdminActivationTest.java b/tests/tests/admin/src/android/admin/cts/DeviceAdminActivationTest.java
index 3e60be1..6fcd0de 100644
--- a/tests/tests/admin/src/android/admin/cts/DeviceAdminActivationTest.java
+++ b/tests/tests/admin/src/android/admin/cts/DeviceAdminActivationTest.java
@@ -21,6 +21,7 @@
 import android.content.ComponentName;
 import android.content.Context;
 import android.content.Intent;
+import android.content.pm.PackageManager;
 import android.deviceadmin.cts.CtsDeviceAdminBrokenReceiver;
 import android.deviceadmin.cts.CtsDeviceAdminBrokenReceiver2;
 import android.deviceadmin.cts.CtsDeviceAdminBrokenReceiver3;
@@ -31,6 +32,7 @@
 import android.deviceadmin.cts.CtsDeviceAdminActivationTestActivity.OnActivityResultListener;
 import android.os.SystemClock;
 import android.test.ActivityInstrumentationTestCase2;
+import android.util.Log;
 
 import org.mockito.ArgumentCaptor;
 import org.mockito.Mock;
@@ -45,6 +47,8 @@
 public class DeviceAdminActivationTest
     extends ActivityInstrumentationTestCase2<CtsDeviceAdminActivationTestActivity> {
 
+    private static final String TAG = DeviceAdminActivationTest.class.getSimpleName();
+
     // IMPLEMENTATION NOTE: Because Device Admin activation requires the use of
     // Activity.startActivityForResult, this test creates an empty Activity which then invokes
     // startActivityForResult.
@@ -57,6 +61,7 @@
      */
     private static final int UI_EFFECT_TIMEOUT_MILLIS = 5000;
 
+    private boolean mDeviceAdmin;
     @Mock private OnActivityResultListener mMockOnActivityResultListener;
 
     public DeviceAdminActivationTest() {
@@ -68,6 +73,8 @@
         super.setUp();
         MockitoAnnotations.initMocks(this);
         getActivity().setOnActivityResultListener(mMockOnActivityResultListener);
+        mDeviceAdmin = getInstrumentation().getContext().getPackageManager().hasSystemFeature(
+                PackageManager.FEATURE_DEVICE_ADMIN);
     }
 
     @Override
@@ -80,6 +87,10 @@
     }
 
     public void testActivateGoodReceiverDisplaysActivationUi() throws Exception {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testActivateGoodReceiverDisplaysActivationUi");
+            return;
+        }
         assertDeviceAdminDeactivated(CtsDeviceAdminDeactivatedReceiver.class);
         startAddDeviceAdminActivityForResult(CtsDeviceAdminDeactivatedReceiver.class);
         assertWithTimeoutOnActivityResultNotInvoked();
@@ -91,6 +102,10 @@
     }
 
     public void testActivateBrokenReceiverFails() throws Exception {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testActivateBrokenReceiverFails");
+            return;
+        }
         assertDeviceAdminDeactivated(CtsDeviceAdminBrokenReceiver.class);
         startAddDeviceAdminActivityForResult(CtsDeviceAdminBrokenReceiver.class);
         assertWithTimeoutOnActivityResultInvokedWithResultCode(Activity.RESULT_CANCELED);
@@ -98,6 +113,10 @@
     }
 
     public void testActivateBrokenReceiver2Fails() throws Exception {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testActivateBrokenReceiver2Fails");
+            return;
+        }
         assertDeviceAdminDeactivated(CtsDeviceAdminBrokenReceiver2.class);
         startAddDeviceAdminActivityForResult(CtsDeviceAdminBrokenReceiver2.class);
         assertWithTimeoutOnActivityResultInvokedWithResultCode(Activity.RESULT_CANCELED);
@@ -105,6 +124,10 @@
     }
 
     public void testActivateBrokenReceiver3Fails() throws Exception {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testActivateBrokenReceiver3Fails");
+            return;
+        }
         assertDeviceAdminDeactivated(CtsDeviceAdminBrokenReceiver3.class);
         startAddDeviceAdminActivityForResult(CtsDeviceAdminBrokenReceiver3.class);
         assertWithTimeoutOnActivityResultInvokedWithResultCode(Activity.RESULT_CANCELED);
@@ -112,6 +135,10 @@
     }
 
     public void testActivateBrokenReceiver4Fails() throws Exception {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testActivateBrokenReceiver4Fails");
+            return;
+        }
         assertDeviceAdminDeactivated(CtsDeviceAdminBrokenReceiver4.class);
         startAddDeviceAdminActivityForResult(CtsDeviceAdminBrokenReceiver4.class);
         assertWithTimeoutOnActivityResultInvokedWithResultCode(Activity.RESULT_CANCELED);
@@ -119,6 +146,10 @@
     }
 
     public void testActivateBrokenReceiver5Fails() throws Exception {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testActivateBrokenReceiver5Fails");
+            return;
+        }
         assertDeviceAdminDeactivated(CtsDeviceAdminBrokenReceiver5.class);
         startAddDeviceAdminActivityForResult(CtsDeviceAdminBrokenReceiver5.class);
         assertWithTimeoutOnActivityResultInvokedWithResultCode(Activity.RESULT_CANCELED);
diff --git a/tests/tests/admin/src/android/admin/cts/DeviceAdminInfoTest.java b/tests/tests/admin/src/android/admin/cts/DeviceAdminInfoTest.java
index b38ef4c..fe68073 100644
--- a/tests/tests/admin/src/android/admin/cts/DeviceAdminInfoTest.java
+++ b/tests/tests/admin/src/android/admin/cts/DeviceAdminInfoTest.java
@@ -21,14 +21,16 @@
 import android.content.pm.PackageManager;
 import android.content.pm.ResolveInfo;
 import android.test.AndroidTestCase;
+import android.util.Log;
 
 public class DeviceAdminInfoTest extends AndroidTestCase {
 
+    private static final String TAG = DeviceAdminInfoTest.class.getSimpleName();
+
     private PackageManager mPackageManager;
-
     private ComponentName mComponent;
-
     private ComponentName mSecondComponent;
+    private boolean mDeviceAdmin;
 
     @Override
     protected void setUp() throws Exception {
@@ -36,6 +38,8 @@
         mPackageManager = mContext.getPackageManager();
         mComponent = getReceiverComponent();
         mSecondComponent = getSecondReceiverComponent();
+        mDeviceAdmin =
+                mContext.getPackageManager().hasSystemFeature(PackageManager.FEATURE_DEVICE_ADMIN);
     }
 
     static ComponentName getReceiverComponent() {
@@ -49,6 +53,10 @@
     }
 
     public void testDeviceAdminInfo() throws Exception {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testDeviceAdminInfo");
+            return;
+        }
         ResolveInfo resolveInfo = new ResolveInfo();
         resolveInfo.activityInfo = mPackageManager.getReceiverInfo(mComponent,
                 PackageManager.GET_META_DATA);
@@ -77,6 +85,10 @@
     }
 
     public void testDeviceAdminInfo2() throws Exception {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testDeviceAdminInfo2");
+            return;
+        }
         ResolveInfo resolveInfo = new ResolveInfo();
         resolveInfo.activityInfo = mPackageManager.getReceiverInfo(mSecondComponent,
                 PackageManager.GET_META_DATA);
diff --git a/tests/tests/admin/src/android/admin/cts/DeviceAdminReceiverTest.java b/tests/tests/admin/src/android/admin/cts/DeviceAdminReceiverTest.java
index b9f842d..b804625 100644
--- a/tests/tests/admin/src/android/admin/cts/DeviceAdminReceiverTest.java
+++ b/tests/tests/admin/src/android/admin/cts/DeviceAdminReceiverTest.java
@@ -19,10 +19,13 @@
 import android.app.admin.DeviceAdminReceiver;
 import android.content.Context;
 import android.content.Intent;
+import android.content.pm.PackageManager;
 import android.test.AndroidTestCase;
+import android.util.Log;
 
 public class DeviceAdminReceiverTest extends AndroidTestCase {
 
+    private static final String TAG = DeviceAdminReceiverTest.class.getSimpleName();
     private static final String DISABLE_WARNING = "Disable Warning";
 
     private static final int PASSWORD_CHANGED = 0x1;
@@ -33,14 +36,21 @@
     private static final int DEVICE_ADMIN_DISABLED = 0x20;
 
     private TestReceiver mReceiver;
+    private boolean mDeviceAdmin;
 
     @Override
     protected void setUp() throws Exception {
         super.setUp();
         mReceiver = new TestReceiver();
+        mDeviceAdmin =
+                mContext.getPackageManager().hasSystemFeature(PackageManager.FEATURE_DEVICE_ADMIN);
     }
 
     public void testOnReceive() {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testOnReceive");
+            return;
+        }
         mReceiver.reset();
         mReceiver.onReceive(mContext, new Intent(DeviceAdminReceiver.ACTION_PASSWORD_CHANGED));
         assertTrue(mReceiver.hasFlags(PASSWORD_CHANGED));
diff --git a/tests/tests/admin/src/android/admin/cts/DevicePolicyManagerTest.java b/tests/tests/admin/src/android/admin/cts/DevicePolicyManagerTest.java
index 62f3daa..e953305 100644
--- a/tests/tests/admin/src/android/admin/cts/DevicePolicyManagerTest.java
+++ b/tests/tests/admin/src/android/admin/cts/DevicePolicyManagerTest.java
@@ -19,7 +19,9 @@
 import android.app.admin.DevicePolicyManager;
 import android.content.ComponentName;
 import android.content.Context;
+import android.content.pm.PackageManager;
 import android.test.AndroidTestCase;
+import android.util.Log;
 
 import java.util.List;
 
@@ -30,9 +32,11 @@
  */
 public class DevicePolicyManagerTest extends AndroidTestCase {
 
-    private DevicePolicyManager mDevicePolicyManager;
+    private static final String TAG = DevicePolicyManagerTest.class.getSimpleName();
 
+    private DevicePolicyManager mDevicePolicyManager;
     private ComponentName mComponent;
+    private boolean mDeviceAdmin;
 
     @Override
     protected void setUp() throws Exception {
@@ -40,6 +44,8 @@
         mDevicePolicyManager = (DevicePolicyManager)
                 mContext.getSystemService(Context.DEVICE_POLICY_SERVICE);
         mComponent = DeviceAdminInfoTest.getReceiverComponent();
+        mDeviceAdmin =
+                mContext.getPackageManager().hasSystemFeature(PackageManager.FEATURE_DEVICE_ADMIN);
         setBlankPassword();
     }
 
@@ -50,6 +56,9 @@
     }
 
     private void setBlankPassword() {
+        if (!mDeviceAdmin) {
+            return;
+        }
         // Reset the password to nothing for future tests...
         mDevicePolicyManager.setPasswordQuality(mComponent,
                 DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED);
@@ -58,6 +67,10 @@
     }
 
     public void testGetActiveAdmins() {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testGetActiveAdmins");
+            return;
+        }
         List<ComponentName> activeAdmins = mDevicePolicyManager.getActiveAdmins();
         assertFalse(activeAdmins.isEmpty());
         assertTrue(activeAdmins.contains(mComponent));
@@ -65,6 +78,10 @@
     }
 
     public void testGetMaximumFailedPasswordsForWipe() {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testGetMaximumFailedPasswordsForWipe");
+            return;
+        }
         mDevicePolicyManager.setMaximumFailedPasswordsForWipe(mComponent, 3);
         assertEquals(3, mDevicePolicyManager.getMaximumFailedPasswordsForWipe(mComponent));
 
@@ -73,6 +90,10 @@
     }
 
     public void testPasswordQuality_something() {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testPasswordQuality_something");
+            return;
+        }
         mDevicePolicyManager.setPasswordQuality(mComponent,
                 DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
         assertEquals(DevicePolicyManager.PASSWORD_QUALITY_SOMETHING,
@@ -102,6 +123,10 @@
     }
 
     public void testPasswordQuality_numeric() {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testPasswordQuality_numeric");
+            return;
+        }
         mDevicePolicyManager.setPasswordQuality(mComponent,
                 DevicePolicyManager.PASSWORD_QUALITY_NUMERIC);
         assertEquals(DevicePolicyManager.PASSWORD_QUALITY_NUMERIC,
@@ -131,6 +156,10 @@
     }
 
     public void testPasswordQuality_alphabetic() {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testPasswordQuality_alphabetic");
+            return;
+        }
         mDevicePolicyManager.setPasswordQuality(mComponent,
                 DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC);
         assertEquals(DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC,
@@ -160,6 +189,10 @@
     }
 
     public void testPasswordQuality_alphanumeric() {
+        if (!mDeviceAdmin) {
+            Log.w(TAG, "Skipping testPasswordQuality_alphanumeric");
+            return;
+        }
         mDevicePolicyManager.setPasswordQuality(mComponent,
                 DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC);
         assertEquals(DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC,
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/DownloadManagerTest.java b/tests/tests/app/src/android/app/cts/DownloadManagerTest.java
index d3029ea..84faffa 100644
--- a/tests/tests/app/src/android/app/cts/DownloadManagerTest.java
+++ b/tests/tests/app/src/android/app/cts/DownloadManagerTest.java
@@ -44,9 +44,9 @@
 
     /**
      * According to the CDD Section 7.6.1, the DownloadManager implementation must be able to
-     * download individual files of 55 MB.
+     * download individual files of 100 MB.
      */
-    private static final int MINIMUM_DOWNLOAD_BYTES = 55 * 1024 * 1024;
+    private static final int MINIMUM_DOWNLOAD_BYTES = 100 * 1024 * 1024;
 
     private static final long SHORT_TIMEOUT = 5 * DateUtils.SECOND_IN_MILLIS;
     private static final long LONG_TIMEOUT = 2 * DateUtils.MINUTE_IN_MILLIS;
diff --git a/tests/tests/app/src/android/app/cts/SystemFeaturesTest.java b/tests/tests/app/src/android/app/cts/SystemFeaturesTest.java
index 012148d..5c80fd1 100644
--- a/tests/tests/app/src/android/app/cts/SystemFeaturesTest.java
+++ b/tests/tests/app/src/android/app/cts/SystemFeaturesTest.java
@@ -200,6 +200,7 @@
     public void testNfcFeatures() {
         if (NfcAdapter.getDefaultAdapter(mContext) != null) {
             assertAvailable(PackageManager.FEATURE_NFC);
+            assertAvailable(PackageManager.FEATURE_NFC_HOST_CARD_EMULATION);
         } else {
             assertNotAvailable(PackageManager.FEATURE_NFC);
         }
@@ -337,6 +338,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/bionic/bionic-unit-tests-cts_list.txt b/tests/tests/bionic/bionic-unit-tests-cts_list.txt
new file mode 100644
index 0000000..55daff5
--- /dev/null
+++ b/tests/tests/bionic/bionic-unit-tests-cts_list.txt
@@ -0,0 +1,576 @@
+Fortify1_Gcc_DeathTest.
+  strcpy_fortified
+  strcpy2_fortified
+  strcpy3_fortified
+  strcpy4_fortified
+  strlen_fortified
+  strchr_fortified
+  strrchr_fortified
+  strlcpy_fortified
+  strlcat_fortified
+  sprintf_fortified
+  sprintf2_fortified
+  vsprintf_fortified
+  vsprintf2_fortified
+  vsnprintf_fortified
+  vsnprintf2_fortified
+  strncat_fortified
+  strncat2_fortified
+  strcat_fortified
+  memmove_fortified
+  memcpy_fortified
+  strncpy_fortified
+  snprintf_fortified
+  bzero_fortified
+  umask_fortified
+Fortify2_Gcc_DeathTest.
+  strncpy_fortified2
+  sprintf_fortified2
+  sprintf2_fortified2
+  vsprintf_fortified2
+  vsprintf2_fortified2
+  vsnprintf_fortified2
+  vsnprintf2_fortified2
+  strcpy_fortified2
+  strcpy2_fortified2
+  strcpy3_fortified2
+  strchr_fortified2
+  strrchr_fortified2
+  strlcpy_fortified2
+  strlcat_fortified2
+  strncat_fortified2
+  strncat2_fortified2
+  strncat3_fortified2
+  strcat_fortified2
+  strcat2_fortified2
+  snprintf_fortified2
+  bzero_fortified2
+  strcpy_fortified
+  strcpy2_fortified
+  strcpy3_fortified
+  strcpy4_fortified
+  strlen_fortified
+  strchr_fortified
+  strrchr_fortified
+  strlcpy_fortified
+  strlcat_fortified
+  sprintf_fortified
+  sprintf2_fortified
+  vsprintf_fortified
+  vsprintf2_fortified
+  vsnprintf_fortified
+  vsnprintf2_fortified
+  strncat_fortified
+  strncat2_fortified
+  strcat_fortified
+  memmove_fortified
+  memcpy_fortified
+  strncpy_fortified
+  snprintf_fortified
+  bzero_fortified
+  umask_fortified
+Fortify1_Clang_DeathTest.
+  strcpy_fortified
+  strcpy2_fortified
+  strcpy3_fortified
+  strcpy4_fortified
+  strlen_fortified
+  strchr_fortified
+  strrchr_fortified
+  strlcpy_fortified
+  strlcat_fortified
+  sprintf_fortified
+  sprintf2_fortified
+  vsprintf_fortified
+  vsprintf2_fortified
+  vsnprintf_fortified
+  vsnprintf2_fortified
+  strncat_fortified
+  strncat2_fortified
+  strcat_fortified
+  memmove_fortified
+  memcpy_fortified
+  strncpy_fortified
+  snprintf_fortified
+  bzero_fortified
+  umask_fortified
+Fortify2_Clang_DeathTest.
+  strncat3_fortified2
+  strcat2_fortified2
+  snprintf_fortified2
+  bzero_fortified2
+  strcpy_fortified
+  strcpy2_fortified
+  strcpy3_fortified
+  strcpy4_fortified
+  strlen_fortified
+  strchr_fortified
+  strrchr_fortified
+  strlcpy_fortified
+  strlcat_fortified
+  sprintf_fortified
+  sprintf2_fortified
+  vsprintf_fortified
+  vsprintf2_fortified
+  vsnprintf_fortified
+  vsnprintf2_fortified
+  strncat_fortified
+  strncat2_fortified
+  strcat_fortified
+  memmove_fortified
+  memcpy_fortified
+  strncpy_fortified
+  snprintf_fortified
+  bzero_fortified
+  umask_fortified
+pthread_DeathTest.
+  pthread_bug_37410
+stack_protector_DeathTest.
+  modify_stack_protector
+properties_DeathTest.
+  read_only
+Fortify1_Gcc.
+  strncat
+  strncat2
+  strncat3
+  strncat4
+  strncat5
+  strncat6
+  strcat
+  strcat2
+  strcat_chk_max_int_size
+  strcpy_chk_max_int_size
+  memcpy_chk_max_int_size
+Fortify2_Gcc.
+  strncat
+  strncat2
+  strncat3
+  strncat4
+  strncat5
+  strncat6
+  strcat
+  strcat2
+  strcat_chk_max_int_size
+  strcpy_chk_max_int_size
+  memcpy_chk_max_int_size
+Fortify1_Clang.
+  strncat
+  strncat2
+  strncat3
+  strncat4
+  strncat5
+  strncat6
+  strcat
+  strcat2
+  strcat_chk_max_int_size
+  strcpy_chk_max_int_size
+  memcpy_chk_max_int_size
+Fortify2_Clang.
+  strncat
+  strncat2
+  strncat3
+  strncat4
+  strncat5
+  strncat6
+  strcat
+  strcat2
+  strcat_chk_max_int_size
+  strcpy_chk_max_int_size
+  memcpy_chk_max_int_size
+dirent.
+  scandir
+  fdopendir_invalid
+  fdopendir
+  opendir_invalid
+  opendir
+  closedir_invalid
+  closedir
+  readdir
+  readdir_r
+  rewinddir
+eventfd.
+  smoke
+fenv.
+  fesetround_fegetround_FE_TONEAREST
+  fesetround_fegetround_FE_TOWARDZERO
+  fesetround_fegetround_FE_UPWARD
+  fesetround_fegetround_FE_DOWNWARD
+  feclearexcept_fetestexcept
+  FE_DFL_ENV_macro
+getauxval.
+  expected_values
+  unexpected_values
+getcwd.
+  auto_full
+  auto_reasonable
+  auto_too_small
+  auto_too_large
+  manual_too_small
+  manual_zero
+  manual_path_max
+inttypes.
+  misc
+libc_logging.
+  smoke
+  d_INT_MAX
+  d_INT_MIN
+  ld_LONG_MAX
+  ld_LONG_MIN
+  lld_LLONG_MAX
+  lld_LLONG_MIN
+libgen.
+  basename
+  dirname
+  basename_r
+  dirname_r
+malloc.
+  malloc_std
+  calloc_std
+  memalign_multiple
+  memalign_realloc
+  malloc_realloc_larger
+  malloc_realloc_smaller
+  malloc_multiple_realloc
+  calloc_realloc_larger
+  calloc_realloc_smaller
+  calloc_multiple_realloc
+math.
+  fpclassify
+  isinf
+  isnan
+  isnormal
+  __fpclassifyd
+  __fpclassifyf
+  __fpclassifyl
+  finitef
+  __isfinite
+  __isfinitef
+  __isfinitel
+  finite
+  __isinff
+  __isinfl
+  __isnanf
+  __isnanl
+  isnanf
+  __isnormal
+  __isnormalf
+  __isnormall
+  __signbit
+  __signbitf
+  __signbitl
+  acos
+  acosf
+  acosl
+  asin
+  asinf
+  asinl
+  atan
+  atanf
+  atanl
+  atan2
+  atan2f
+  atan2l
+  cos
+  cosf
+  cosl
+  sin
+  sinf
+  sinl
+  tan
+  tanf
+  tanl
+  acosh
+  acoshf
+  acoshl
+  asinh
+  asinhf
+  asinhl
+  atanh
+  atanhf
+  atanhl
+  cosh
+  coshf
+  coshl
+  sinh
+  sinhf
+  sinhl
+  tanh
+  tanhf
+  tanhl
+  log
+  logf
+  logl
+  log2
+  log2f
+  log2l
+  log10
+  log10f
+  log10l
+  cbrt
+  cbrtf
+  cbrtl
+  sqrt
+  sqrtf
+  sqrtl
+  exp
+  expf
+  expl
+  exp2
+  exp2f
+  exp2l
+  expm1
+  expm1f
+  expm1l
+  pow
+  powf
+  powl
+  ceil
+  ceilf
+  ceill
+  floor
+  floorf
+  floorl
+  fabs
+  fabsf
+  fabsl
+  ldexp
+  ldexpf
+  ldexpl
+  fmod
+  fmodf
+  fmodl
+  remainder
+  remainderf
+  remainderl
+  drem
+  dremf
+  fmax
+  fmaxf
+  fmaxl
+  fmin
+  fminf
+  fminl
+  fma
+  fmaf
+  fmal
+  hypot
+  hypotf
+  hypotl
+  erf
+  erff
+  erfl
+  erfc
+  erfcf
+  erfcl
+  lrint
+  rint
+  nearbyint
+  lround
+  llround
+  ilogb
+  ilogbf
+  ilogbl
+  logb
+  logbf
+  logbl
+  log1p
+  log1pf
+  log1pl
+  fdim
+  fdimf
+  fdiml
+  round
+  roundf
+  roundl
+  trunc
+  truncf
+  truncl
+  nextafter
+  nextafterf
+  nextafterl
+  copysign
+  copysignf
+  copysignl
+  significand
+  significandf
+  significandl
+  scalb
+  scalbf
+  scalbln
+  scalblnf
+  scalblnl
+  scalbn
+  scalbnf
+  scalbnl
+  gamma
+  gammaf
+  gamma_r
+  gammaf_r
+  lgamma
+  lgammaf
+  lgammal
+  lgamma_r
+  lgammaf_r
+  tgamma
+  tgammaf
+  tgammal
+  j0
+  j0f
+  j1
+  j1f
+  jn
+  jnf
+  y0
+  y0f
+  y1
+  y1f
+  yn
+  ynf
+  frexp
+  frexpf
+  frexpl
+  modf
+  modff
+  modfl
+  remquo
+  remquof
+  remquol
+  frexpf_public_bug_6697
+netdb.
+  getaddrinfo_NULL_hints
+  getnameinfo_salen
+pthread.
+  pthread_key_create
+  pthread_key_create_lots
+  pthread_create
+  pthread_create_EAGAIN
+  pthread_no_join_after_detach
+  pthread_no_op_detach_after_join
+  pthread_join_self
+  pthread_sigmask
+  __pthread_clone
+  pthread_setname_np__too_long
+  pthread_setname_np__self
+  pthread_setname_np__other
+  pthread_setname_np__no_such_thread
+  pthread_kill__0
+  pthread_kill__invalid_signal
+  pthread_kill__in_signal_handler
+  pthread_detach__no_such_thread
+  pthread_getcpuclockid__clock_gettime
+  pthread_getcpuclockid__no_such_thread
+  pthread_getschedparam__no_such_thread
+  pthread_setschedparam__no_such_thread
+  pthread_join__no_such_thread
+  pthread_kill__no_such_thread
+  pthread_join__multijoin
+  pthread_attr_setguardsize
+  pthread_attr_setstacksize
+regex.
+  smoke
+signal.
+  sigismember_invalid
+  sigaddset_invalid
+  sigdelset_invalid
+  sigemptyset_invalid
+  sigfillset_invalid
+  raise_invalid
+  raise_in_signal_handler
+  sigwait
+stack_protector.
+  global_guard
+statvfs.
+  statvfs
+  fstatvfs
+stdio.
+  tmpfile_fileno_fprintf_rewind_fgets
+  getdelim
+  getdelim_invalid
+  getline
+  getline_invalid
+  printf_ssize_t
+  popen
+  getc
+  putc
+stdlib.
+  drand48
+  lrand48_random_rand
+  mrand48
+  posix_memalign
+  realpath__NULL_filename
+  realpath__empty_filename
+  realpath__ENOENT
+  realpath
+  qsort
+string.
+  strerror
+  strerror_concurrent
+  strerror_r
+  strsignal
+  strsignal_concurrent
+  strcat
+  strcpy2
+  strcpy3
+  strcpy4
+  strcat2
+  strcat3
+  strncat2
+  strncat3
+  strncat4
+  strncat5
+  strchr_with_0
+  strchr
+  strcmp
+  strcpy
+  strlcat
+  strlcpy
+  strncat
+  strncmp
+  strncpy
+  strrchr
+  memchr
+  memrchr
+  memcmp
+  __memcmp16
+  wmemcmp
+  memcpy
+  memset
+  memmove
+  bcopy
+  bzero
+strings.
+  ffs
+getpwnam.
+  system_id_root
+  system_id_system
+  app_id_radio
+  app_id_nobody
+  app_id_all_a0
+  app_id_u1_a40000
+  app_id_u0_a0
+  app_id_u0_a1234
+  app_id_u0_a9999
+  app_id_u1_root
+  app_id_u1_radio
+  app_id_u1_a0
+  app_id_u1_i0
+sys_stat.
+  futimens
+  futimens_EBADF
+properties.
+  add
+  update
+  fill
+  foreach
+  find_nth
+  fill_hierarchical
+  errors
+  serial
+  wait
+time.
+  mktime_tz
+  gmtime
+  mktime_10310929
+unistd.
+  sysconf_SC_MONOTONIC_CLOCK
+  sbrk
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/graphics/cts/BitmapFactoryTest.java b/tests/tests/graphics/src/android/graphics/cts/BitmapFactoryTest.java
index 91d827c..f942f93 100644
--- a/tests/tests/graphics/src/android/graphics/cts/BitmapFactoryTest.java
+++ b/tests/tests/graphics/src/android/graphics/cts/BitmapFactoryTest.java
@@ -40,6 +40,7 @@
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.OutputStream;
+import java.io.RandomAccessFile;
 
 public class BitmapFactoryTest extends InstrumentationTestCase {
     private Resources mRes;
@@ -240,6 +241,50 @@
         assertEquals(START_WIDTH, b.getWidth());
     }
 
+    public void testDecodeFileDescriptor3() throws IOException {
+        // Arbitrary offsets to use. If the offset of the FD matches the offset of the image,
+        // decoding should succeed, but if they do not match, decoding should fail.
+        long ACTUAL_OFFSETS[] = new long[] { 0, 17 };
+        for (int RES_ID : RES_IDS) {
+            for (int j = 0; j < ACTUAL_OFFSETS.length; ++j) {
+                // FIXME: The purgeable test should attempt to purge the memory
+                // to force a re-decode.
+                for (boolean TEST_PURGEABLE : new boolean[] { false, true }) {
+                    BitmapFactory.Options opts = new BitmapFactory.Options();
+                    opts.inPurgeable = TEST_PURGEABLE;
+                    opts.inInputShareable = TEST_PURGEABLE;
+
+                    long actualOffset = ACTUAL_OFFSETS[j];
+                    String path = obtainPath(RES_ID, actualOffset);
+                    RandomAccessFile file = new RandomAccessFile(path, "r");
+                    FileDescriptor fd = file.getFD();
+                    assertTrue(fd.valid());
+
+                    // Set the offset to ACTUAL_OFFSET
+                    file.seek(actualOffset);
+                    assertEquals(file.getFilePointer(), actualOffset);
+
+                    // Now decode. This should be successful and leave the offset
+                    // unchanged.
+                    Bitmap b = BitmapFactory.decodeFileDescriptor(fd, null, opts);
+                    assertNotNull(b);
+                    assertEquals(file.getFilePointer(), actualOffset);
+
+                    // Now use the other offset. It should fail to decode, and
+                    // the offset should remain unchanged.
+                    long otherOffset = ACTUAL_OFFSETS[(j + 1) % ACTUAL_OFFSETS.length];
+                    assertFalse(otherOffset == actualOffset);
+                    file.seek(otherOffset);
+                    assertEquals(file.getFilePointer(), otherOffset);
+
+                    b = BitmapFactory.decodeFileDescriptor(fd, null, opts);
+                    assertNull(b);
+                    assertEquals(file.getFilePointer(), otherOffset);
+                }
+            }
+        }
+    }
+
     public void testDecodeFile1() throws IOException {
         Bitmap b = BitmapFactory.decodeFile(obtainPath(), mOpt1);
         assertNotNull(b);
@@ -426,17 +471,32 @@
     }
 
     private String obtainPath() throws IOException {
+        return obtainPath(R.drawable.start, 0);
+    }
+
+    /*
+     * Create a new file and return a path to it.
+     * @param resId Original file. It will be copied into the new file.
+     * @param offset Number of zeroes to write to the new file before the
+     *               copied file. This allows testing decodeFileDescriptor
+     *               with an offset. Must be less than or equal to 1024
+     */
+    private String obtainPath(int resId, long offset) throws IOException {
         File dir = getInstrumentation().getTargetContext().getFilesDir();
         dir.mkdirs();
+        // The suffix does not necessarily represent theactual file type.
         File file = new File(dir, "test.jpg");
         if (!file.createNewFile()) {
             if (!file.exists()) {
                 fail("Failed to create new File!");
             }
         }
-        InputStream is = obtainInputStream();
+        InputStream is = obtainInputStream(resId);
         FileOutputStream fOutput = new FileOutputStream(file);
         byte[] dataBuffer = new byte[1024];
+        // Write a bunch of zeroes before the image.
+        assertTrue(offset <= 1024);
+        fOutput.write(dataBuffer, 0, (int) offset);
         int readLength = 0;
         while ((readLength = is.read(dataBuffer)) != -1) {
             fOutput.write(dataBuffer, 0, readLength);
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/consumerir/cts/ConsumerIrTest.java b/tests/tests/hardware/src/android/hardware/consumerir/cts/ConsumerIrTest.java
index cff1fc6..395a69b 100644
--- a/tests/tests/hardware/src/android/hardware/consumerir/cts/ConsumerIrTest.java
+++ b/tests/tests/hardware/src/android/hardware/consumerir/cts/ConsumerIrTest.java
@@ -20,6 +20,7 @@
 import android.hardware.ConsumerIrManager;
 import android.util.Log;
 import android.content.pm.PackageManager;
+import android.os.SystemClock;
 import android.test.AndroidTestCase;
 import java.io.IOException;
 
@@ -68,6 +69,41 @@
         }
     }
 
+    public void test_timing() {
+        if (!mHasConsumerIr) {
+            // Skip the test if consumer IR is not present.
+            return;
+        }
+
+        ConsumerIrManager.CarrierFrequencyRange[] freqs = mCIR.getCarrierFrequencies();
+        // Transmit two seconds for min and max for each frequency range
+        int[] pattern = {1111, 2222, 3333, 4444, 5555, 6666, 7777, 8888, 9999};
+        long totalXmitTime = 0; // get the length of the pattern
+        for (int slice : pattern) {
+            totalXmitTime += slice;
+        }
+        double margin = 0.1; // max fraction xmit is allowed to be off timing
+
+        for (ConsumerIrManager.CarrierFrequencyRange range : freqs) {
+            // test min freq
+            long currentTime = SystemClock.elapsedRealtimeNanos();
+            mCIR.transmit(range.getMinFrequency(), pattern);
+            long newTime = SystemClock.elapsedRealtimeNanos();
+            String msg = String.format("Pattern length pattern:%d, actual:%d",
+                    totalXmitTime, newTime - currentTime);
+            assertTrue(msg, newTime - currentTime >= totalXmitTime * (1.0 - margin));
+            assertTrue(msg, newTime - currentTime <= totalXmitTime * (1.0 + margin));
+
+            // test max freq
+            currentTime = SystemClock.elapsedRealtimeNanos();
+            mCIR.transmit(range.getMaxFrequency(), pattern);
+            newTime = SystemClock.elapsedRealtimeNanos();
+            msg = String.format("Pattern length pattern:%d, actual:%d",
+                    totalXmitTime, newTime - currentTime);
+            assertTrue(msg, newTime - currentTime >= totalXmitTime * (1.0 - margin));
+            assertTrue(msg, newTime - currentTime <= totalXmitTime * (1.0 + margin));
+        }
+    }
 
     public void test_transmit() {
         if (!mHasConsumerIr) {
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/AndroidManifest.xml b/tests/tests/holo/AndroidManifest.xml
index 4a03ba3..1c59630 100644
--- a/tests/tests/holo/AndroidManifest.xml
+++ b/tests/tests/holo/AndroidManifest.xml
@@ -23,21 +23,21 @@
     <application android:hardwareAccelerated="false">
         <uses-library android:name="android.test.runner" />
 
-        <activity android:name="android.holo.cts.HoloTestUtilitiesActivity" 
+        <activity android:name="android.holo.cts.HoloTestUtilitiesActivity"
                 android:label="@string/holo_test_utilities">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
         </activity>
-        
+
         <activity android:name="android.holo.cts.DisplayInfoActivity"
                 android:label="@string/display_info" />
 
-        <activity android:name="android.holo.cts.ThemePickerActivity" 
+        <activity android:name="android.holo.cts.ThemePickerActivity"
                 android:label="@string/pick_theme" />
 
-        <activity android:name="android.holo.cts.LayoutPickerActivity" 
+        <activity android:name="android.holo.cts.LayoutPickerActivity"
                 android:label="@string/pick_layout" />
 
         <activity android:name="android.holo.cts.ThemeTestActivity"
@@ -58,7 +58,7 @@
                 android:theme="@android:style/Theme.Translucent.NoTitleBar" />
 
     </application>
-    
+
     <instrumentation android:name="android.test.InstrumentationCtsTestRunner"
             android:targetPackage="com.android.cts.holo"
             android:label="CTS tests for the Holo theme" />
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/AndroidManifest.xml b/tests/tests/media/AndroidManifest.xml
index 2eeef08..90024c4 100644
--- a/tests/tests/media/AndroidManifest.xml
+++ b/tests/tests/media/AndroidManifest.xml
@@ -58,6 +58,12 @@
                 <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" />
             </intent-filter>
         </activity>
+        <service android:name="android.media.cts.RemoteVirtualDisplayService"
+            android:process=":remoteService" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN"/>
+            </intent-filter>
+        </service>
     </application>
 
     <instrumentation android:name="android.test.InstrumentationCtsTestRunner"
diff --git a/tests/tests/media/res/layout/composition_layout.xml b/tests/tests/media/res/layout/composition_layout.xml
new file mode 100644
index 0000000..6aa9ea8
--- /dev/null
+++ b/tests/tests/media/res/layout/composition_layout.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.
+ -->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:orientation="horizontal" >
+        <FrameLayout
+            android:id="@+id/window0"
+            android:layout_width="0dp"
+            android:layout_height="match_parent"
+            android:visibility="visible"
+            android:layout_weight="0.33" />
+        <FrameLayout
+            android:id="@+id/window1"
+            android:layout_width="0dp"
+            android:layout_height="match_parent"
+            android:visibility="gone"
+            android:layout_weight="0.33" />
+        <FrameLayout
+            android:id="@+id/window2"
+            android:layout_width="0dp"
+            android:layout_height="match_parent"
+            android:visibility="gone"
+            android:layout_weight="0.33" />
+</LinearLayout>
diff --git a/tests/tests/media/res/raw/video_1280x720_mp4_h264_1000kbps_25fps_aac_stereo_128kbps_44100hz.mp4 b/tests/tests/media/res/raw/video_1280x720_mp4_h264_1000kbps_25fps_aac_stereo_128kbps_44100hz.mp4
new file mode 100644
index 0000000..add873d
--- /dev/null
+++ b/tests/tests/media/res/raw/video_1280x720_mp4_h264_1000kbps_25fps_aac_stereo_128kbps_44100hz.mp4
Binary files differ
diff --git a/tests/tests/media/res/raw/video_1280x720_webm_vp8_333kbps_25fps_vorbis_stereo_128kbps_44100hz.webm b/tests/tests/media/res/raw/video_1280x720_webm_vp8_333kbps_25fps_vorbis_stereo_128kbps_44100hz.webm
new file mode 100644
index 0000000..c8b9512
--- /dev/null
+++ b/tests/tests/media/res/raw/video_1280x720_webm_vp8_333kbps_25fps_vorbis_stereo_128kbps_44100hz.webm
Binary files differ
diff --git a/tests/tests/media/res/raw/video_1280x720_webm_vp9_309kbps_25fps_vorbis_stereo_128kbps_44100hz.webm b/tests/tests/media/res/raw/video_1280x720_webm_vp9_309kbps_25fps_vorbis_stereo_128kbps_44100hz.webm
new file mode 100644
index 0000000..65b436a
--- /dev/null
+++ b/tests/tests/media/res/raw/video_1280x720_webm_vp9_309kbps_25fps_vorbis_stereo_128kbps_44100hz.webm
Binary files differ
diff --git a/tests/tests/media/src/android/media/cts/AdaptivePlaybackTest.java b/tests/tests/media/src/android/media/cts/AdaptivePlaybackTest.java
new file mode 100644
index 0000000..0230edc
--- /dev/null
+++ b/tests/tests/media/src/android/media/cts/AdaptivePlaybackTest.java
@@ -0,0 +1,1605 @@
+/*
+ * 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.media.cts;
+
+import com.android.cts.media.R;
+
+import android.content.Context;
+import android.content.res.AssetFileDescriptor;
+import android.media.MediaCodec;
+import android.media.MediaCodecInfo;
+import android.media.MediaCodecInfo.CodecCapabilities;
+import android.media.MediaCodecInfo.CodecProfileLevel;
+import android.media.MediaCodecList;
+import android.media.MediaExtractor;
+import android.media.MediaFormat;
+import android.util.Log;
+import android.view.Surface;
+
+import android.opengl.GLES20;
+import javax.microedition.khronos.opengles.GL10;
+
+import java.io.IOException;
+import java.nio.ByteBuffer;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.Locale;
+import java.util.zip.CRC32;
+
+public class AdaptivePlaybackTest extends MediaPlayerTestBase {
+    private static final String TAG = "AdaptivePlaybackTest";
+    private boolean sanity = false;
+
+    public Iterable<Codec> H264(CodecFactory factory) {
+        return factory.createCodecList(
+                mContext,
+                "video/avc",
+                "OMX.google.h264.decoder",
+                R.raw.video_480x360_mp4_h264_1000kbps_25fps_aac_stereo_128kbps_44100hz,
+                R.raw.video_1280x720_mp4_h264_1000kbps_25fps_aac_stereo_128kbps_44100hz);
+    }
+
+    public Iterable<Codec> H263(CodecFactory factory) {
+        return factory.createCodecList(
+                mContext,
+                "video/3gpp",
+                "OMX.google.h263.decoder",
+                R.raw.video_176x144_3gp_h263_300kbps_12fps_aac_stereo_128kbps_22050hz);
+    }
+
+    public Iterable<Codec> Mpeg4(CodecFactory factory) {
+        return factory.createCodecList(
+                mContext,
+                "video/mp4v-es",
+                "OMX.google.mpeg4.decoder",
+                R.raw.video_480x360_mp4_mpeg4_860kbps_25fps_aac_stereo_128kbps_44100hz);
+    }
+
+    public Iterable<Codec> VP8(CodecFactory factory) {
+        return factory.createCodecList(
+                mContext,
+                "video/x-vnd.on2.vp8",
+                "OMX.google.vp8.decoder",
+                R.raw.video_480x360_webm_vp8_333kbps_25fps_vorbis_stereo_128kbps_44100hz,
+                R.raw.video_1280x720_webm_vp8_333kbps_25fps_vorbis_stereo_128kbps_44100hz);
+    }
+
+    public Iterable<Codec> VP9(CodecFactory factory) {
+        return factory.createCodecList(
+                mContext,
+                "video/x-vnd.on2.vp9",
+                "OMX.google.vp9.decoder",
+                R.raw.video_480x360_webm_vp9_333kbps_25fps_vorbis_stereo_128kbps_44100hz,
+                R.raw.video_1280x720_webm_vp9_309kbps_25fps_vorbis_stereo_128kbps_44100hz);
+    }
+
+    CodecFactory ALL = new CodecFactory();
+    CodecFactory SW  = new SWCodecFactory();
+    CodecFactory HW  = new HWCodecFactory();
+
+    public Iterable<Codec> H264()  { return H264(ALL);  }
+    public Iterable<Codec> VP8()   { return VP8(ALL);   }
+    public Iterable<Codec> VP9()   { return VP9(ALL);   }
+    public Iterable<Codec> Mpeg4() { return Mpeg4(ALL); }
+    public Iterable<Codec> H263()  { return H263(ALL);  }
+
+    public Iterable<Codec> AllCodecs() {
+        return chain(H264(ALL), VP8(ALL), VP9(ALL), Mpeg4(ALL), H263(ALL));
+    }
+
+    public Iterable<Codec> SWCodecs() {
+        return chain(H264(SW), VP8(SW), VP9(SW), Mpeg4(SW), H263(SW));
+    }
+
+    public Iterable<Codec> HWCodecs() {
+        return chain(H264(HW), VP8(HW), VP9(HW), Mpeg4(HW), H263(HW));
+    }
+
+    /* tests for adaptive codecs */
+    Test adaptiveEarlyEos     = new EarlyEosTest().adaptive();
+    Test adaptiveEosFlushSeek = new EosFlushSeekTest().adaptive();
+    Test adaptiveSkipAhead    = new AdaptiveSkipTest(true /* forward */);
+    Test adaptiveSkipBack     = new AdaptiveSkipTest(false /* forward */);
+
+    /* DRC tests for adaptive codecs */
+    Test adaptiveReconfigDrc      = new ReconfigDrcTest().adaptive();
+    Test adaptiveSmallReconfigDrc = new ReconfigDrcTest().adaptiveSmall();
+    Test adaptiveDrc      = new AdaptiveDrcTest(); /* adaptive */
+    Test adaptiveSmallDrc = new AdaptiveDrcTest().adaptiveSmall();
+
+    /* tests for regular codecs */
+    Test earlyEos          = new EarlyEosTest();
+    Test eosFlushSeek      = new EosFlushSeekTest();
+    Test flushConfigureDrc = new ReconfigDrcTest();
+
+    Test[] allTests = {
+        adaptiveEarlyEos,
+        adaptiveEosFlushSeek,
+        adaptiveSkipAhead,
+        adaptiveSkipBack,
+        adaptiveReconfigDrc,
+        adaptiveSmallReconfigDrc,
+        adaptiveDrc,
+        adaptiveSmallDrc,
+        earlyEos,
+        eosFlushSeek,
+        flushConfigureDrc,
+    };
+
+    /* helpers to run sets of tests */
+    public void runEOS() { ex(AllCodecs(), new Test[] {
+        adaptiveEarlyEos,
+        adaptiveEosFlushSeek,
+        adaptiveReconfigDrc,
+        adaptiveSmallReconfigDrc,
+        earlyEos,
+        eosFlushSeek,
+        flushConfigureDrc,
+    }); }
+
+    public void runAll() { ex(AllCodecs(), allTests); }
+    public void runSW()  { ex(SWCodecs(),  allTests); }
+    public void runHW()  { ex(HWCodecs(),  allTests); }
+
+    public void sanityAll() { sanity = true; try { runAll(); } finally { sanity = false; } }
+    public void sanitySW()  { sanity = true; try { runSW();  } finally { sanity = false; } }
+    public void sanityHW()  { sanity = true; try { runHW();  } finally { sanity = false; } }
+
+    public void runH264()  { ex(H264(),  allTests); }
+    public void runVP8()   { ex(VP8(),   allTests); }
+    public void runVP9()   { ex(VP9(),   allTests); }
+    public void runMpeg4() { ex(Mpeg4(), allTests); }
+    public void runH263()  { ex(H263(),  allTests); }
+
+    public void onlyH264HW()  { ex(H264(HW),  allTests); }
+    public void onlyVP8HW()   { ex(VP8(HW),   allTests); }
+    public void onlyVP9HW()   { ex(VP9(HW),   allTests); }
+    public void onlyMpeg4HW() { ex(Mpeg4(HW), allTests); }
+    public void onlyH263HW()  { ex(H263(HW),  allTests); }
+
+    public void onlyH264SW()  { ex(H264(SW),  allTests); }
+    public void onlyVP8SW()   { ex(VP8(SW),   allTests); }
+    public void onlyVP9SW()   { ex(VP9(SW),   allTests); }
+    public void onlyMpeg4SW() { ex(Mpeg4(SW), allTests); }
+    public void onlyH263SW()  { ex(H263(SW),  allTests); }
+
+    public void bytebuffer() { ex(H264(SW), new EarlyEosTest().byteBuffer()); }
+    public void texture() { ex(H264(HW), new EarlyEosTest().texture()); }
+
+    /* inidividual tests */
+    public void testH264_adaptiveEarlyEos()  { ex(H264(),  adaptiveEarlyEos); }
+    public void testVP8_adaptiveEarlyEos()   { ex(VP8(),   adaptiveEarlyEos); }
+    public void testVP9_adaptiveEarlyEos()   { ex(VP9(),   adaptiveEarlyEos); }
+    public void testMpeg4_adaptiveEarlyEos() { ex(Mpeg4(), adaptiveEarlyEos); }
+    public void testH263_adaptiveEarlyEos()  { ex(H263(),  adaptiveEarlyEos); }
+
+    public void testH264_adaptiveEosFlushSeek()  { ex(H264(),  adaptiveEosFlushSeek); }
+    public void testVP8_adaptiveEosFlushSeek()   { ex(VP8(),   adaptiveEosFlushSeek); }
+    public void testVP9_adaptiveEosFlushSeek()   { ex(VP9(),   adaptiveEosFlushSeek); }
+    public void testMpeg4_adaptiveEosFlushSeek() { ex(Mpeg4(), adaptiveEosFlushSeek); }
+    public void testH263_adaptiveEosFlushSeek()  { ex(H263(),  adaptiveEosFlushSeek); }
+
+    public void testH264_adaptiveSkipAhead()  { ex(H264(),  adaptiveSkipAhead); }
+    public void testVP8_adaptiveSkipAhead()   { ex(VP8(),   adaptiveSkipAhead); }
+    public void testVP9_adaptiveSkipAhead()   { ex(VP9(),   adaptiveSkipAhead); }
+    public void testMpeg4_adaptiveSkipAhead() { ex(Mpeg4(), adaptiveSkipAhead); }
+    public void testH263_adaptiveSkipAhead()  { ex(H263(),  adaptiveSkipAhead); }
+
+    public void testH264_adaptiveSkipBack()  { ex(H264(),  adaptiveSkipBack); }
+    public void testVP8_adaptiveSkipBack()   { ex(VP8(),   adaptiveSkipBack); }
+    public void testVP9_adaptiveSkipBack()   { ex(VP9(),   adaptiveSkipBack); }
+    public void testMpeg4_adaptiveSkipBack() { ex(Mpeg4(), adaptiveSkipBack); }
+    public void testH263_adaptiveSkipBack()  { ex(H263(),  adaptiveSkipBack); }
+
+    public void testH264_adaptiveReconfigDrc()  { ex(H264(),  adaptiveReconfigDrc); }
+    public void testVP8_adaptiveReconfigDrc()   { ex(VP8(),   adaptiveReconfigDrc); }
+    public void testVP9_adaptiveReconfigDrc()   { ex(VP9(),   adaptiveReconfigDrc); }
+    public void testMpeg4_adaptiveReconfigDrc() { ex(Mpeg4(), adaptiveReconfigDrc); }
+    public void testH263_adaptiveReconfigDrc()  { ex(H263(),  adaptiveReconfigDrc); }
+
+    public void testH264_adaptiveSmallReconfigDrc()  { ex(H264(),  adaptiveSmallReconfigDrc); }
+    public void testVP8_adaptiveSmallReconfigDrc()   { ex(VP8(),   adaptiveSmallReconfigDrc); }
+    public void testVP9_adaptiveSmallReconfigDrc()   { ex(VP9(),   adaptiveSmallReconfigDrc); }
+    public void testMpeg4_adaptiveSmallReconfigDrc() { ex(Mpeg4(), adaptiveSmallReconfigDrc); }
+    public void testH263_adaptiveSmallReconfigDrc()  { ex(H263(),  adaptiveSmallReconfigDrc); }
+
+    public void testH264_adaptiveDrc() { ex(H264(), adaptiveDrc); }
+    public void testVP8_adaptiveDrc()  { ex(VP8(),  adaptiveDrc); }
+    public void testVP9_adaptiveDrc()  { ex(VP9(),  adaptiveDrc); }
+
+    public void testH264_adaptiveDrcEarlyEos() { ex(H264(), new AdaptiveDrcEarlyEosTest()); }
+    public void testVP8_adaptiveDrcEarlyEos()  { ex(VP8(),  new AdaptiveDrcEarlyEosTest()); }
+    public void testVP9_adaptiveDrcEarlyEos()  { ex(VP9(),  new AdaptiveDrcEarlyEosTest()); }
+
+    public void testH264_adaptiveSmallDrc()  { ex(H264(),  adaptiveSmallDrc); }
+    public void testVP8_adaptiveSmallDrc()   { ex(VP8(),   adaptiveSmallDrc); }
+    public void testVP9_adaptiveSmallDrc()   { ex(VP9(),   adaptiveSmallDrc); }
+
+    public void testH264_earlyEos()  { ex(H264(),  earlyEos); }
+    public void testVP8_earlyEos()   { ex(VP8(),   earlyEos); }
+    public void testVP9_earlyEos()   { ex(VP9(),   earlyEos); }
+    public void testMpeg4_earlyEos() { ex(Mpeg4(), earlyEos); }
+    public void testH263_earlyEos()  { ex(H263(),  earlyEos); }
+
+    public void testH264_eosFlushSeek()  { ex(H264(),  eosFlushSeek); }
+    public void testVP8_eosFlushSeek()   { ex(VP8(),   eosFlushSeek); }
+    public void testVP9_eosFlushSeek()   { ex(VP9(),   eosFlushSeek); }
+    public void testMpeg4_eosFlushSeek() { ex(Mpeg4(), eosFlushSeek); }
+    public void testH263_eosFlushSeek()  { ex(H263(),  eosFlushSeek); }
+
+    public void testH264_flushConfigureDrc()  { ex(H264(),  flushConfigureDrc); }
+    public void testVP8_flushConfigureDrc()   { ex(VP8(),   flushConfigureDrc); }
+    public void testVP9_flushConfigureDrc()   { ex(VP9(),   flushConfigureDrc); }
+    public void testMpeg4_flushConfigureDrc() { ex(Mpeg4(), flushConfigureDrc); }
+    public void testH263_flushConfigureDrc()  { ex(H263(),  flushConfigureDrc); }
+
+    /* only use unchecked exceptions to allow brief test methods */
+    private void ex(Iterable<Codec> codecList, Test test) {
+        ex(codecList, new Test[] { test } );
+    }
+
+    private void ex(Iterable<Codec> codecList, Test[] testList) {
+        TestList tests = new TestList();
+        for (Codec c : codecList) {
+            for (Test test : testList) {
+                if (test.isValid(c)) {
+                    test.addTests(tests, c);
+                }
+            }
+        }
+        try {
+            tests.run();
+        } catch (Throwable t) {
+            throw new RuntimeException(t);
+        }
+    }
+
+    /* need an inner class to have access to the activity */
+    abstract class ActivityTest extends Test {
+        TestSurface mNullSurface = new ActivitySurface(null);
+        protected TestSurface getSurface() {
+            if (mUseSurface) {
+                return new ActivitySurface(getActivity().getSurfaceHolder().getSurface());
+            } else if (mUseSurfaceTexture) {
+                return new DecoderSurface(1280, 720, mCRC);
+            }
+            return mNullSurface;
+        }
+    }
+
+    static final int NUM_FRAMES = 50;
+
+    /**
+     * Queue some frames with an EOS on the last one.  Test that we have decoded as many
+     * frames as we queued.  This tests the EOS handling of the codec to see if all queued
+     * (and out-of-order) frames are actually decoded and returned.
+     */
+    class EarlyEosTest extends ActivityTest {
+        public boolean isValid(Codec c) {
+            return getFormat(c) != null;
+        }
+        public void addTests(TestList tests, final Codec c) {
+            for (int i = NUM_FRAMES / 2; i > 0; i--) {
+                final int queuedFrames = i;
+                tests.add(
+                    new Step("testing early EOS at " + queuedFrames, this, c) {
+                        public void run() {
+                            Decoder decoder = new Decoder(c.name);
+                            try {
+                                decoder.configureAndStart(stepFormat(), stepSurface());
+                                int decodedFrames = -decoder.queueInputBufferRange(
+                                        stepMedia(),
+                                        0 /* startFrame */,
+                                        queuedFrames,
+                                        true /* sendEos */,
+                                        true /* waitForEos */);
+                                if (decodedFrames <= 0) {
+                                    Log.w(TAG, "Did not receive EOS -- negating frame count");
+                                }
+                                decoder.stop();
+                                if (decodedFrames != queuedFrames) {
+                                    warn("decoded " + decodedFrames + " frames out of " +
+                                            queuedFrames + " queued");
+                                }
+                            } finally {
+                                warn(decoder.getWarnings());
+                                decoder.releaseQuietly();
+                            }
+                        }
+                    });
+                if (sanity) {
+                    i >>= 1;
+                }
+            }
+        }
+    };
+
+    /**
+     * Similar to EarlyEosTest, but we keep the component alive and running in between the steps.
+     * This is how seeking should be done if all frames must be outputted.  This also tests that
+     * PTS can be repeated after flush.
+     */
+    class EosFlushSeekTest extends ActivityTest {
+        Decoder mDecoder; // test state
+        public boolean isValid(Codec c) {
+            return getFormat(c) != null;
+        }
+        public void addTests(TestList tests, final Codec c) {
+            tests.add(
+                new Step("testing EOS & flush before seek - init", this, c) {
+                    public void run() {
+                        mDecoder = new Decoder(c.name);
+                        mDecoder.configureAndStart(stepFormat(), stepSurface());
+                    }});
+
+            for (int i = NUM_FRAMES; i > 0; i--) {
+                final int queuedFrames = i;
+                tests.add(
+                    new Step("testing EOS & flush before seeking after " + queuedFrames +
+                            " frames", this, c) {
+                        public void run() {
+                            int decodedFrames = -mDecoder.queueInputBufferRange(
+                                    stepMedia(),
+                                    0 /* startFrame */,
+                                    queuedFrames,
+                                    true /* sendEos */,
+                                    true /* waitForEos */);
+                            if (decodedFrames != queuedFrames) {
+                                warn("decoded " + decodedFrames + " frames out of " +
+                                        queuedFrames + " queued");
+                            }
+                            warn(mDecoder.getWarnings());
+                            mDecoder.clearWarnings();
+                            mDecoder.flush();
+                        }
+                    });
+                if (sanity) {
+                    i >>= 1;
+                }
+            }
+
+            tests.add(
+                new Step("testing EOS & flush before seek - finally", this, c) {
+                    public void run() {
+                        try {
+                            mDecoder.stop();
+                        } finally {
+                            mDecoder.release();
+                        }
+                    }});
+        }
+    };
+
+    /**
+     * Similar to EosFlushSeekTest, but we change the media size between the steps.
+     * This is how dynamic resolution switching can be done on codecs that do not support
+     * adaptive playback.
+     */
+    class ReconfigDrcTest extends ActivityTest {
+        Decoder mDecoder;  // test state
+        public boolean isValid(Codec c) {
+            return getFormat(c) != null && c.mediaList.length > 1;
+        }
+        public void addTests(TestList tests, final Codec c) {
+            tests.add(
+                new Step("testing DRC with reconfigure - init", this, c) {
+                    public void run() {
+                        mDecoder = new Decoder(c.name);
+                    }});
+
+            for (int i = NUM_FRAMES, ix = 0; i > 0; i--, ix++) {
+                final int queuedFrames = i;
+                final int mediaIx = ix % c.mediaList.length;
+                tests.add(
+                    new Step("testing DRC with reconfigure after " + queuedFrames + " frames",
+                            this, c, mediaIx) {
+                        public void run() {
+                            try {
+                                mDecoder.configureAndStart(stepFormat(), stepSurface());
+                                int decodedFrames = -mDecoder.queueInputBufferRange(
+                                        stepMedia(),
+                                        0 /* startFrame */,
+                                        queuedFrames,
+                                        true /* sendEos */,
+                                        true /* waitForEos */);
+                                if (decodedFrames != queuedFrames) {
+                                    warn("decoded " + decodedFrames + " frames out of " +
+                                            queuedFrames + " queued");
+                                }
+                                warn(mDecoder.getWarnings());
+                                mDecoder.clearWarnings();
+                                mDecoder.flush();
+                            } finally {
+                                mDecoder.stop();
+                            }
+                        }
+                    });
+                if (sanity) {
+                    i >>= 1;
+                }
+            }
+            tests.add(
+                new Step("testing DRC with reconfigure - finally", this, c) {
+                    public void run() {
+                        mDecoder.release();
+                    }});
+        }
+    };
+
+    /* ADAPTIVE-ONLY TESTS - only run on codecs that support adaptive playback */
+
+    /**
+     * Test dynamic resolution change support.  Queue various sized media segments
+     * with different resolutions, verify that all queued frames were decoded.  Here
+     * PTS will grow between segments.
+     */
+    class AdaptiveDrcTest extends ActivityTest {
+        Decoder mDecoder;
+        int mAdjustTimeUs;
+        int mDecodedFrames;
+        int mQueuedFrames;
+
+        public AdaptiveDrcTest() {
+            super();
+            adaptive();
+        }
+        public boolean isValid(Codec c) {
+            checkAdaptiveFormat();
+            return c.adaptive && c.mediaList.length > 1;
+        }
+        public void addTests(TestList tests, final Codec c) {
+            tests.add(
+                new Step("testing DRC with no reconfigure - init", this, c) {
+                    public void run() throws Throwable {
+                        mDecoder = new Decoder(c.name);
+                        mDecoder.configureAndStart(stepFormat(), stepSurface());
+                        mAdjustTimeUs = 0;
+                        mDecodedFrames = 0;
+                        mQueuedFrames = 0;
+                    }});
+
+            for (int i = NUM_FRAMES, ix = 0; i > 1; i--, ix++) {
+                final int mediaIx = ix % c.mediaList.length;
+                final int segmentSize = i;
+                tests.add(
+                    new Step("testing DRC with no reconfigure after " + i + " frames",
+                            this, c, mediaIx) {
+                        public void run() throws Throwable {
+                            mQueuedFrames += segmentSize;
+                            boolean lastSequence = segmentSize == 2;
+                            if (sanity) {
+                                lastSequence = (segmentSize >> 1) <= 2;
+                            }
+                            int frames = mDecoder.queueInputBufferRange(
+                                    stepMedia(),
+                                    0 /* startFrame */,
+                                    segmentSize,
+                                    lastSequence /* sendEos */,
+                                    lastSequence /* expectEos */,
+                                    mAdjustTimeUs);
+                            if (lastSequence && frames >= 0) {
+                                warn("did not receive EOS, received " + frames + " frames");
+                            } else if (!lastSequence && frames < 0) {
+                                warn("received EOS, received " + (-frames) + " frames");
+                            }
+                            warn(mDecoder.getWarnings());
+                            mDecoder.clearWarnings();
+
+                            mDecodedFrames += Math.abs(frames);
+                            mAdjustTimeUs += 1 + stepMedia().getTimestampRangeValue(
+                                    0, segmentSize, Media.RANGE_END);
+                        }});
+                if (sanity) {
+                    i >>= 1;
+                }
+            }
+            tests.add(
+                new Step("testing DRC with no reconfigure - init", this, c) {
+                    public void run() throws Throwable {
+                        if (mDecodedFrames != mQueuedFrames) {
+                            warn("decoded " + mDecodedFrames + " frames out of " +
+                                    mQueuedFrames + " queued");
+                        }
+                        try {
+                            mDecoder.stop();
+                        } finally {
+                            mDecoder.release();
+                        }
+                    }
+                });
+        }
+    };
+
+    /**
+     * Queue EOS shortly after a dynamic resolution change.  Test that all frames were
+     * decoded.
+     */
+    class AdaptiveDrcEarlyEosTest extends ActivityTest {
+        public AdaptiveDrcEarlyEosTest() {
+            super();
+            adaptive();
+        }
+        public boolean isValid(Codec c) {
+            checkAdaptiveFormat();
+            return c.adaptive && c.mediaList.length > 1;
+        }
+        public Step testStep(final Codec c, final int framesBeforeDrc,
+                final int framesBeforeEos) {
+            return new Step("testing DRC with no reconfigure after " + framesBeforeDrc +
+                    " frames and subsequent EOS after " + framesBeforeEos + " frames",
+                    this, c) {
+                public void run() throws Throwable {
+                    Decoder decoder = new Decoder(c.name);
+                    int queuedFrames = framesBeforeDrc + framesBeforeEos;
+                    int framesA = 0;
+                    int framesB = 0;
+                    try {
+                        decoder.configureAndStart(stepFormat(), stepSurface());
+                        Media media = c.mediaList[0];
+
+                        framesA = decoder.queueInputBufferRange(
+                                media,
+                                0 /* startFrame */,
+                                framesBeforeDrc,
+                                false /* sendEos */,
+                                false /* expectEos */);
+                        if (framesA < 0) {
+                            warn("received unexpected EOS, received " + (-framesA) + " frames");
+                        }
+                        long adjustTimeUs = 1 + media.getTimestampRangeValue(
+                                0, framesBeforeDrc, Media.RANGE_END);
+
+                        media = c.mediaList[1];
+                        framesB = decoder.queueInputBufferRange(
+                                media,
+                                0 /* startFrame */,
+                                framesBeforeEos,
+                                true /* sendEos */,
+                                true /* expectEos */,
+                                adjustTimeUs);
+                        if (framesB >= 0) {
+                            warn("did not receive EOS, received " + (-framesB) + " frames");
+                        }
+                        decoder.stop();
+                        warn(decoder.getWarnings());
+                    } finally {
+                        int decodedFrames = Math.abs(framesA) + Math.abs(framesB);
+                        if (decodedFrames != queuedFrames) {
+                            warn("decoded " + decodedFrames + " frames out of " + queuedFrames +
+                                    " queued");
+                        }
+                        decoder.release();
+                    }
+                }
+            };
+        }
+        public void addTests(TestList tests, Codec c) {
+            for (int drcFrame = 6; drcFrame > 1; drcFrame--) {
+                for (int eosFrame = 6; eosFrame >= 1; eosFrame--) {
+                    tests.add(testStep(c, drcFrame, eosFrame));
+                }
+            }
+        }
+    };
+
+    /**
+     * Similar to AdaptiveDrcTest, but tests that PTS can change at adaptive boundaries both
+     * forward and backward without the need to flush.
+     */
+    class AdaptiveSkipTest extends ActivityTest {
+        boolean forward;
+        public AdaptiveSkipTest(boolean fwd) {
+            forward = fwd;
+            adaptive();
+        }
+        public boolean isValid(Codec c) {
+            checkAdaptiveFormat();
+            return c.adaptive;
+        }
+        Decoder mDecoder;
+        int mAdjustTimeUs = 0;
+        int mDecodedFrames = 0;
+        int mQueuedFrames = 0;
+        public void addTests(TestList tests, final Codec c) {
+            tests.add(
+                new Step("testing flushless skipping - init", this, c) {
+                    public void run() throws Throwable {
+                        mDecoder = new Decoder(c.name);
+                        mDecoder.configureAndStart(stepFormat(), stepSurface());
+                        mAdjustTimeUs = 0;
+                        mDecodedFrames = 0;
+                        mQueuedFrames = 0;
+                    }});
+
+            for (int i = 2, ix = 0; i <= NUM_FRAMES; i++, ix++) {
+                final int mediaIx = ix % c.mediaList.length;
+                final int segmentSize = i;
+                final boolean lastSequence;
+                if (sanity) {
+                    lastSequence = (segmentSize << 1) + 1 > NUM_FRAMES;
+                } else {
+                    lastSequence = segmentSize >= NUM_FRAMES;
+                }
+                tests.add(
+                    new Step("testing flushless skipping " + (forward ? "forward" : "backward") +
+                            " after " + i + " frames", this, c) {
+                        public void run() throws Throwable {
+                            int frames = mDecoder.queueInputBufferRange(
+                                stepMedia(),
+                                0 /* startFrame */,
+                                segmentSize,
+                                lastSequence /* sendEos */,
+                                lastSequence /* expectEos */,
+                                mAdjustTimeUs);
+                            if (lastSequence && frames >= 0) {
+                                warn("did not receive EOS, received " + frames + " frames");
+                            } else if (!lastSequence && frames < 0) {
+                                warn("received unexpected EOS, received " + (-frames) + " frames");
+                            }
+                            warn(mDecoder.getWarnings());
+                            mDecoder.clearWarnings();
+
+                            mQueuedFrames += segmentSize;
+                            mDecodedFrames += Math.abs(frames);
+                            if (forward) {
+                                mAdjustTimeUs += 10000000 + stepMedia().getTimestampRangeValue(
+                                        0, segmentSize, Media.RANGE_DURATION);
+                            }
+                        }});
+                if (sanity) {
+                    i <<= 1;
+                }
+            }
+
+            tests.add(
+                new Step("testing flushless skipping - finally", this, c) {
+                    public void run() throws Throwable {
+                        if (mDecodedFrames != mQueuedFrames) {
+                            warn("decoded " + mDecodedFrames + " frames out of " + mQueuedFrames +
+                                    " queued");
+                        }
+                        try {
+                            mDecoder.stop();
+                        } finally {
+                            mDecoder.release();
+                        }
+                    }});
+        }
+    };
+
+    // not yet used
+    static long checksum(ByteBuffer buf, int size, CRC32 crc) {
+        assertTrue(size >= 0);
+        assertTrue(size <= buf.capacity());
+        crc.reset();
+        if (buf.hasArray()) {
+            crc.update(buf.array(), buf.arrayOffset(), size);
+        } else {
+           int pos = buf.position();
+           buf.rewind();
+           final int rdsize = Math.min(4096, size);
+           byte bb[] = new byte[rdsize];
+           int chk;
+           for (int i = 0; i < size; i += chk) {
+                chk = Math.min(rdsize, size - i);
+                buf.get(bb, 0, chk);
+                crc.update(bb, 0, chk);
+            }
+            buf.position(pos);
+        }
+        return crc.getValue();
+    }
+
+    CRC32 mCRC;
+
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+        mCRC = new CRC32();
+    }
+
+    /* ====================================================================== */
+    /*                              UTILITY FUNCTIONS                         */
+    /* ====================================================================== */
+    public static String collectionString(Collection<?> c) {
+        StringBuilder res = new StringBuilder("[");
+        boolean subsequent = false;
+        for (Object o: c) {
+            if (subsequent) {
+                res.append(", ");
+            }
+            res.append(o);
+            subsequent = true;
+        }
+        return res.append("]").toString();
+    }
+
+    static String byteBufferToString(ByteBuffer buf, int start, int len) {
+        int oldPosition = buf.position();
+        buf.position(start);
+        int strlen = 2; // {}
+        boolean ellipsis = len < buf.limit();
+        if (ellipsis) {
+            strlen += 3; // ...
+        } else {
+            len = buf.limit();
+        }
+        strlen += 3 * len - (len > 0 ? 1 : 0); // XX,XX
+        char[] res = new char[strlen];
+        res[0] = '{';
+        res[strlen - 1] = '}';
+        if (ellipsis) {
+            res[strlen - 2] = res[strlen - 3] = res[strlen - 4] = '.';
+        }
+        for (int i = 1; i < len; i++) {
+            res[i * 3] = ',';
+        }
+        for (int i = 0; i < len; i++) {
+            byte b = buf.get();
+            int d = (b >> 4) & 15;
+            res[i * 3 + 1] = (char)(d + (d > 9 ? 'a' - 10 : '0'));
+            d = (b & 15);
+            res[i * 3 + 2] = (char)(d + (d > 9 ? 'a' - 10 : '0'));
+        }
+        buf.position(oldPosition);
+        return new String(res);
+    }
+
+    static <E> Iterable<E> chain(Iterable<E> ... iterables) {
+        /* simple chainer using ArrayList */
+        ArrayList<E> items = new ArrayList<E>();
+        for (Iterable<E> it: iterables) {
+            for (E el: it) {
+                items.add(el);
+            }
+        }
+        return items;
+    }
+
+    class Decoder {
+        private final static String TAG = "AdaptiveDecoder";
+        final long kTimeOutUs = 5000;
+        MediaCodec mCodec;
+        ByteBuffer[] mInputBuffers;
+        ByteBuffer[] mOutputBuffers;
+        TestSurface mSurface;
+        boolean mDoChecksum;
+        boolean mQueuedEos;
+        ArrayList<Long> mTimeStamps;
+        ArrayList<String> mWarnings;
+
+        public Decoder(String codecName) {
+            MediaCodec codec = null;
+            try {
+                codec = MediaCodec.createByCodecName(codecName);
+            } catch (Exception e) {
+                throw new RuntimeException("couldn't create codec " + codecName, e);
+            }
+            Log.i(TAG, "using codec: " + codec.getName());
+            mCodec = codec;
+            mDoChecksum = false;
+            mQueuedEos = false;
+            mTimeStamps = new ArrayList<Long>();
+            mWarnings = new ArrayList<String>();
+        }
+
+        public String getName() {
+            return mCodec.getName();
+        }
+
+        public Iterable<String> getWarnings() {
+            return mWarnings;
+        }
+
+        private void warn(String warning) {
+            mWarnings.add(warning);
+            Log.w(TAG, warning);
+        }
+
+        public void clearWarnings() {
+            mWarnings.clear();
+        }
+
+        public void configureAndStart(MediaFormat format, TestSurface surface) {
+            mSurface = surface;
+            Log.i(TAG, "configure(" + format + ", " + mSurface.getSurface() + ")");
+            mCodec.configure(format, mSurface.getSurface(), null /* crypto */, 0 /* flags */);
+            Log.i(TAG, "start");
+            mCodec.start();
+            mInputBuffers = mCodec.getInputBuffers();
+            mOutputBuffers = mCodec.getOutputBuffers();
+            Log.i(TAG, "configured " + mInputBuffers.length + " input[" +
+                  mInputBuffers[0].capacity() + "] and " +
+                  mOutputBuffers.length + "output[" +
+                  (mOutputBuffers[0] == null ? null : mOutputBuffers[0].capacity()) + "]");
+            mQueuedEos = false;
+        }
+
+        public void stop() {
+            Log.i(TAG, "stop");
+            mCodec.stop();
+        }
+
+        public void flush() {
+            Log.i(TAG, "flush");
+            mCodec.flush();
+            mQueuedEos = false;
+            mTimeStamps.clear();
+        }
+
+        public String dequeueAndReleaseOutputBuffer(MediaCodec.BufferInfo info) {
+            int ix = mCodec.dequeueOutputBuffer(info, kTimeOutUs);
+            if (ix == MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED) {
+                mOutputBuffers = mCodec.getOutputBuffers();
+                Log.d(TAG, "output buffers have changed.");
+                return null;
+            } else if (ix == MediaCodec.INFO_OUTPUT_FORMAT_CHANGED) {
+                MediaFormat format = mCodec.getOutputFormat();
+                Log.d(TAG, "output format has changed to " + format);
+                int colorFormat = format.getInteger(MediaFormat.KEY_COLOR_FORMAT);
+                mDoChecksum = isRecognizedFormat(colorFormat);
+                return null;
+            } else if (ix < 0) {
+                Log.v(TAG, "no output");
+                return null;
+            }
+            /* create checksum */
+            long sum = 0;
+
+
+            Log.v(TAG, "dequeue #" + ix + " => { [" + info.size + "] flags=" + info.flags +
+                    " @" + info.presentationTimeUs + "}");
+
+            // we get a nonzero size for valid decoded frames
+            boolean doRender = (info.size != 0);
+            if (mSurface.getSurface() == null) {
+                if (mDoChecksum) {
+                    sum = checksum(mOutputBuffers[ix], info.size, mCRC);
+                }
+                mCodec.releaseOutputBuffer(ix, doRender);
+            } else if (doRender) {
+                // If using SurfaceTexture, as soon as we call releaseOutputBuffer, the
+                // buffer will be forwarded to SurfaceTexture to convert to a texture.
+                // The API doesn't guarantee that the texture will be available before
+                // the call returns, so we need to wait for the onFrameAvailable callback
+                // to fire.  If we don't wait, we risk dropping frames.
+                mSurface.prepare();
+                mCodec.releaseOutputBuffer(ix, doRender);
+                mSurface.waitForDraw();
+                if (mDoChecksum) {
+                    sum = mSurface.checksum();
+                }
+            } else {
+                mCodec.releaseOutputBuffer(ix, doRender);
+            }
+
+            if (doRender) {
+                if (!mTimeStamps.remove(info.presentationTimeUs)) {
+                    warn("invalid timestamp " + info.presentationTimeUs + ", queued " +
+                            collectionString(mTimeStamps));
+                }
+            }
+
+            return String.format(Locale.US, "{pts=%d, flags=%x, data=0x%x}",
+                                 info.presentationTimeUs, info.flags, sum);
+        }
+
+        /* returns true iff queued a frame */
+        public boolean queueInputBuffer(Media media, int frameIx, boolean EOS) {
+            return queueInputBuffer(media, frameIx, EOS, 0);
+        }
+
+        public boolean queueInputBuffer(Media media, int frameIx, boolean EOS, long adjustTimeUs) {
+            if (mQueuedEos) {
+                return false;
+            }
+
+            int ix = mCodec.dequeueInputBuffer(kTimeOutUs);
+
+            if (ix < 0) {
+                return false;
+            }
+
+            ByteBuffer buf = mInputBuffers[ix];
+            Media.Frame frame = media.getFrame(frameIx);
+            buf.clear();
+
+            long presentationTimeUs = adjustTimeUs;
+            int flags = 0;
+            if (frame != null) {
+                buf.put((ByteBuffer)frame.buf.clear());
+                presentationTimeUs += frame.presentationTimeUs;
+                flags = frame.flags;
+            }
+
+            if (EOS) {
+                flags |= MediaCodec.BUFFER_FLAG_END_OF_STREAM;
+                mQueuedEos = true;
+            }
+
+            mTimeStamps.add(presentationTimeUs);
+            Log.v(TAG, "queue { [" + buf.position() + "]=" + byteBufferToString(buf, 0, 16) +
+                    " flags=" + flags + " @" + presentationTimeUs + "} => #" + ix);
+            mCodec.queueInputBuffer(
+                    ix, 0 /* offset */, buf.position(), presentationTimeUs, flags);
+            return true;
+        }
+
+        /* returns number of frames received multiplied by -1 if received EOS, 1 otherwise */
+        public int queueInputBufferRange(
+                Media media, int frameStartIx, int frameEndIx, boolean sendEosAtEnd,
+                boolean waitForEos) {
+            return queueInputBufferRange(media,frameStartIx,frameEndIx,sendEosAtEnd,waitForEos,0);
+        }
+
+        public int queueInputBufferRange(
+                Media media, int frameStartIx, int frameEndIx, boolean sendEosAtEnd,
+                boolean waitForEos, long adjustTimeUs) {
+            MediaCodec.BufferInfo info = new MediaCodec.BufferInfo();
+            int frameIx = frameStartIx;
+            int numFramesDecoded = 0;
+            boolean sawOutputEos = false;
+            int deadDecoderCounter = 0;
+            ArrayList<String> frames = new ArrayList<String>();
+            while ((waitForEos && !sawOutputEos) || frameIx < frameEndIx) {
+                if (frameIx < frameEndIx) {
+                    if (queueInputBuffer(
+                            media,
+                            frameIx,
+                            sendEosAtEnd && (frameIx + 1 == frameEndIx),
+                            adjustTimeUs)) {
+                        frameIx++;
+                    }
+                }
+
+                String buf = dequeueAndReleaseOutputBuffer(info);
+                if (buf != null) {
+                    // Some decoders output a 0-sized buffer at the end. Disregard those.
+                    if (info.size > 0) {
+                        deadDecoderCounter = 0;
+                        numFramesDecoded++;
+                    }
+
+                    if ((info.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0) {
+                        Log.d(TAG, "saw output EOS.");
+                        sawOutputEos = true;
+                    }
+                }
+                if (++deadDecoderCounter >= 100) {
+                    warn("have not received an output frame for a while");
+                    break;
+                }
+            }
+
+            if (numFramesDecoded < frameEndIx - frameStartIx - 16) {
+                fail("Queued " + (frameEndIx - frameStartIx) + " frames but only received " +
+                        numFramesDecoded);
+            }
+            return (sawOutputEos ? -1 : 1) * numFramesDecoded;
+        }
+
+        void release() {
+            Log.i(TAG, "release");
+            mCodec.release();
+            mSurface.release();
+            mInputBuffers = null;
+            mOutputBuffers = null;
+            mCodec = null;
+            mSurface = null;
+        }
+
+        // don't fail on exceptions in release()
+        void releaseQuietly() {
+            try {
+                Log.i(TAG, "release");
+                mCodec.release();
+            } catch (Throwable e) {
+                Log.e(TAG, "Exception while releasing codec", e);
+            }
+            mSurface.release();
+            mInputBuffers = null;
+            mOutputBuffers = null;
+            mCodec = null;
+            mSurface = null;
+        }
+    };
+
+    /* from EncodeDecodeTest */
+    private static boolean isRecognizedFormat(int colorFormat) {
+        switch (colorFormat) {
+            // these are the formats we know how to handle for this test
+            case MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Planar:
+            case MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420PackedPlanar:
+            case MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420SemiPlanar:
+            case MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420PackedSemiPlanar:
+            case MediaCodecInfo.CodecCapabilities.COLOR_TI_FormatYUV420PackedSemiPlanar:
+                return true;
+            default:
+                return false;
+        }
+    }
+
+    private int countFrames(
+            String codecName, MediaCodecInfo codecInfo, Media media, int eosframe, TestSurface s)
+            throws Exception {
+        Decoder codec = new Decoder(codecName);
+        codec.configureAndStart(media.getFormat(), s /* surface */);
+
+        int numframes = codec.queueInputBufferRange(
+                media, 0, eosframe, true /* sendEos */, true /* waitForEos */);
+        if (numframes >= 0) {
+            Log.w(TAG, "Did not receive EOS");
+        } else {
+            numframes *= -1;
+        }
+
+        codec.stop();
+        codec.release();
+        return numframes;
+    }
+}
+
+/* ====================================================================== */
+/*                             Video Media Asset                          */
+/* ====================================================================== */
+class Media {
+    private final static String TAG = "AdaptiveMedia";
+    private MediaFormat mFormat;
+    private MediaFormat mAdaptiveFormat;
+    static class Frame {
+        long presentationTimeUs;
+        int flags;
+        ByteBuffer buf;
+        public Frame(long _pts, int _flags, ByteBuffer _buf) {
+            presentationTimeUs = _pts;
+            flags = _flags;
+            buf = _buf;
+        }
+    };
+    private Frame[] mFrames;
+
+    public Frame getFrame(int ix) {
+        /* this works even on short sample as frame is allocated as null */
+        if (ix >= 0 && ix < mFrames.length) {
+            return mFrames[ix];
+        }
+        return null;
+    }
+    private Media(MediaFormat format, MediaFormat adaptiveFormat, int numFrames) {
+        /* need separate copies of format as once we add adaptive flags to
+           MediaFormat, we cannot remove them */
+        mFormat = format;
+        mAdaptiveFormat = adaptiveFormat;
+        mFrames = new Frame[numFrames];
+    }
+
+    public MediaFormat getFormat() {
+        return mFormat;
+    }
+
+    public MediaFormat getAdaptiveFormat(int width, int height) {
+        mAdaptiveFormat.setInteger(MediaFormat.KEY_MAX_WIDTH, width);
+        mAdaptiveFormat.setInteger(MediaFormat.KEY_MAX_HEIGHT, height);
+        return mAdaptiveFormat;
+    }
+
+    public String getMime() {
+        return mFormat.getString(MediaFormat.KEY_MIME);
+    }
+
+    public int getWidth() {
+        return mFormat.getInteger(MediaFormat.KEY_WIDTH);
+    }
+
+    public int getHeight() {
+        return mFormat.getInteger(MediaFormat.KEY_HEIGHT);
+    }
+
+    public final static int RANGE_START = 0;
+    public final static int RANGE_END = 1;
+    public final static int RANGE_DURATION = 2;
+
+    public long getTimestampRangeValue(int frameStartIx, int frameEndIx, int kind) {
+        long min = Long.MAX_VALUE, max = Long.MIN_VALUE;
+        for (int frameIx = frameStartIx; frameIx < frameEndIx; frameIx++) {
+            Frame frame = getFrame(frameIx);
+            if (frame != null) {
+                if (min > frame.presentationTimeUs) {
+                    min = frame.presentationTimeUs;
+                }
+                if (max < frame.presentationTimeUs) {
+                    max = frame.presentationTimeUs;
+                }
+            }
+        }
+        if (kind == RANGE_START) {
+            return min;
+        } else if (kind == RANGE_END) {
+            return max;
+        } else if (kind == RANGE_DURATION) {
+            return max - min;
+        } else {
+            throw new IllegalArgumentException("kind is not valid: " + kind);
+        }
+    }
+
+    public static Media read(Context context, int video, int numFrames)
+            throws java.io.IOException {
+        MediaExtractor extractor = new MediaExtractor();
+        AssetFileDescriptor testFd = context.getResources().openRawResourceFd(video);
+        extractor.setDataSource(testFd.getFileDescriptor(), testFd.getStartOffset(),
+                testFd.getLength());
+
+        Media media = new Media(
+                extractor.getTrackFormat(0), extractor.getTrackFormat(0), numFrames);
+        extractor.selectTrack(0);
+
+        Log.i(TAG, "format=" + media.getFormat());
+        ArrayList<ByteBuffer> csds = new ArrayList<ByteBuffer>();
+        for (String tag: new String[] { "csd-0", "csd-1" }) {
+            if (media.getFormat().containsKey(tag)) {
+                ByteBuffer csd = media.getFormat().getByteBuffer(tag);
+                Log.i(TAG, tag + "=" + AdaptivePlaybackTest.byteBufferToString(csd, 0, 16));
+                csds.add(csd);
+            }
+        }
+
+        ByteBuffer readBuf = ByteBuffer.allocate(200000);
+        for (int ix = 0; ix < numFrames; ix++) {
+            int sampleSize = extractor.readSampleData(readBuf, 0 /* offset */);
+
+            if (sampleSize < 0) {
+                throw new IllegalArgumentException("media is too short at " + ix + " frames");
+            } else {
+                readBuf.position(0).limit(sampleSize);
+                for (ByteBuffer csd: csds) {
+                    sampleSize += csd.capacity();
+                }
+                ByteBuffer buf = ByteBuffer.allocate(sampleSize);
+                for (ByteBuffer csd: csds) {
+                    csd.clear();
+                    buf.put(csd);
+                    csd.clear();
+                    Log.i(TAG, "csd[" + csd.capacity() + "]");
+                }
+                Log.i(TAG, "frame-" + ix + "[" + sampleSize + "]");
+                csds.clear();
+                buf.put(readBuf);
+                media.mFrames[ix] = new Frame(
+                    extractor.getSampleTime(),
+                    extractor.getSampleFlags(),
+                    buf);
+                extractor.advance();
+            }
+        }
+        extractor.release();
+        testFd.close();
+        return media;
+    }
+}
+
+/* ====================================================================== */
+/*                      Codec, CodecList and CodecFactory                 */
+/* ====================================================================== */
+class Codec {
+    private final static String TAG = "AdaptiveCodec";
+
+    public String name;
+    public CodecCapabilities capabilities;
+    public Media[] mediaList;
+    public boolean adaptive;
+    public Codec(String n, CodecCapabilities c, Media[] m) {
+        name = n;
+        capabilities = c;
+        mediaList = m;
+
+        if (capabilities == null) {
+            adaptive = false;
+        } else {
+            Log.w(TAG, "checking capabilities of " + name + " for " + mediaList[0].getMime());
+            adaptive = capabilities.isFeatureSupported(CodecCapabilities.FEATURE_AdaptivePlayback);
+        }
+    }
+}
+
+class CodecList extends ArrayList<Codec> { };
+
+/* all codecs of mime, plus named codec if exists */
+class CodecFamily extends CodecList {
+    private final static String TAG = "AdaptiveCodecFamily";
+    private static final int NUM_FRAMES = AdaptivePlaybackTest.NUM_FRAMES;
+
+    public CodecFamily(Context context, String mime, String explicitCodecName, int ... resources) {
+        try {
+            /* read all media */
+            Media[] mediaList = new Media[resources.length];
+            for (int i = 0; i < resources.length; i++) {
+                Log.v(TAG, "reading media " + resources[i]);
+                Media media = Media.read(context, resources[i], NUM_FRAMES);
+                assert media.getMime().equals(mime):
+                        "test stream " + resources[i] + " has " + media.getMime() +
+                        " mime type instead of " + mime;
+
+                /* assuming the first timestamp is the smallest */
+                long firstPTS = media.getFrame(0).presentationTimeUs;
+                long smallestPTS = media.getTimestampRangeValue(0, NUM_FRAMES, Media.RANGE_START);
+
+                assert firstPTS == smallestPTS:
+                        "first frame timestamp (" + firstPTS + ") is not smallest (" +
+                        smallestPTS + ")";
+
+                mediaList[i] = media;
+            }
+
+            /* enumerate codecs */
+            int codecCount = MediaCodecList.getCodecCount();
+            for (int codecIx = 0; codecIx < codecCount; codecIx++) {
+                MediaCodecInfo codecInfo = MediaCodecList.getCodecInfoAt(codecIx);
+                if (codecInfo.isEncoder()) {
+                    continue;
+                }
+                for (String type : codecInfo.getSupportedTypes()) {
+                    if (type.equals(mime)) {
+                        /* mark the explicitly named codec as included */
+                        if (codecInfo.getName().equals(explicitCodecName)) {
+                            explicitCodecName = null;
+                        }
+                        add(new Codec(
+                                codecInfo.getName(),
+                                codecInfo.getCapabilitiesForType(mime),
+                                mediaList));
+                        break;
+                    }
+                }
+            }
+
+            /* test if the explicitly named codec is present on the system */
+            if (explicitCodecName != null) {
+                MediaCodec codec = MediaCodec.createByCodecName(explicitCodecName);
+                if (codec != null) {
+                    codec.release();
+                    add(new Codec(explicitCodecName, null, mediaList));
+                }
+            }
+        } catch (Throwable t) {
+            Log.wtf("Constructor failed", t);
+            throw new RuntimeException("constructor failed", t);
+        }
+    }
+}
+
+/* named codec if exists */
+class CodecByName extends CodecList {
+    public CodecByName(Context context, String mime, String codecName, int ... resources) {
+        for (Codec c: new CodecFamily(context, mime, codecName, resources)) {
+            if (c.name.equals(codecName)) {
+                add(c);
+            }
+        }
+    }
+}
+
+/* all codecs of mime, except named codec if exists */
+class CodecFamilyExcept extends CodecList {
+    public CodecFamilyExcept(
+            Context context, String mime, String exceptCodecName, int ... resources) {
+        for (Codec c: new CodecFamily(context, mime, null, resources)) {
+            if (!c.name.equals(exceptCodecName)) {
+                add(c);
+            }
+        }
+    }
+}
+
+class CodecFactory {
+    public CodecList createCodecList(
+            Context context, String mime, String googleCodecName, int ...resources) {
+        return new CodecFamily(context, mime, googleCodecName, resources);
+    }
+}
+
+class SWCodecFactory extends CodecFactory {
+    public CodecList createCodecList(
+            Context context, String mime, String googleCodecName, int ...resources) {
+        return new CodecByName(context, mime, googleCodecName, resources);
+    }
+}
+
+class HWCodecFactory extends CodecFactory {
+    public CodecList createCodecList(
+            Context context, String mime, String googleCodecName, int ...resources) {
+        return new CodecFamilyExcept(context, mime, googleCodecName, resources);
+    }
+}
+
+/* ====================================================================== */
+/*                  Test Steps, Test (Case)s, and Test List               */
+/* ====================================================================== */
+class StepRunner implements Runnable {
+    public StepRunner(Step s) {
+        mStep = s;
+        mThrowed = null;
+    }
+    public void run() {
+        try {
+            mStep.run();
+        } catch (Throwable e) {
+            mThrowed = e;
+        }
+    }
+    public void throwThrowed() throws Throwable {
+        if (mThrowed != null) {
+            throw mThrowed;
+        }
+    }
+    private Throwable mThrowed;
+    private Step mStep;
+}
+
+class TestList extends ArrayList<Step> {
+    private final static String TAG = "AdaptiveTestList";
+    public void run() throws Throwable {
+        Throwable res = null;
+        for (Step step: this) {
+            try {
+                Log.i(TAG, step.getDescription());
+                if (step.stepSurface().needsToRunInSeparateThread()) {
+                    StepRunner runner = new StepRunner(step);
+                    Thread th = new Thread(runner, "stepWrapper");
+                    th.start();
+                    th.join();
+                    runner.throwThrowed();
+                } else {
+                    step.run();
+                }
+            } catch (Throwable e) {
+                Log.e(TAG, "while " + step.getDescription(), e);
+                res = e;
+                mFailedSteps++;
+            } finally {
+                mWarnings += step.getWarnings();
+            }
+        }
+        if (res != null) {
+            throw new RuntimeException(
+                mFailedSteps + " failed steps, " + mWarnings + " warnings",
+                res);
+        }
+    }
+    public int getWarnings() {
+        return mWarnings;
+    }
+    public int getFailures() {
+        return mFailedSteps;
+    }
+    private int mFailedSteps;
+    private int mWarnings;
+}
+
+abstract class Test {
+    public static final int FORMAT_ADAPTIVE_LARGEST = 1;
+    public static final int FORMAT_ADAPTIVE_FIRST = 2;
+    public static final int FORMAT_REGULAR = 3;
+
+    protected int mFormatType;
+    protected boolean mUseSurface;
+    protected boolean mUseSurfaceTexture;
+
+    public Test() {
+        mFormatType = FORMAT_REGULAR;
+        mUseSurface = true;
+        mUseSurfaceTexture = false;
+    }
+
+    public Test adaptive() {
+        mFormatType = FORMAT_ADAPTIVE_LARGEST;
+        return this;
+    }
+
+    public Test adaptiveSmall() {
+        mFormatType = FORMAT_ADAPTIVE_FIRST;
+        return this;
+    }
+
+    public Test byteBuffer() {
+        mUseSurface = false;
+        mUseSurfaceTexture = false;
+        return this;
+    }
+
+    public Test texture() {
+        mUseSurface = false;
+        mUseSurfaceTexture = true;
+        return this;
+    }
+
+    public void checkAdaptiveFormat() {
+        assert mFormatType != FORMAT_REGULAR:
+                "must be used with adaptive format";
+    }
+
+    abstract protected TestSurface getSurface();
+
+    /* TRICKY: format is updated in each test run as we are actually reusing the
+       same 2 MediaFormat objects returned from MediaExtractor.  Therefore,
+       format must be explicitly obtained in each test step.
+
+       returns null if codec does not support the format.
+       */
+    protected MediaFormat getFormat(Codec c) {
+        return getFormat(c, 0);
+    }
+
+    protected MediaFormat getFormat(Codec c, int i) {
+        MediaFormat format = null;
+        if (mFormatType == FORMAT_REGULAR) {
+            format = c.mediaList[i].getFormat();
+        } else if (mFormatType == FORMAT_ADAPTIVE_FIRST && c.adaptive) {
+            format = c.mediaList[i].getAdaptiveFormat(
+                c.mediaList[i].getWidth(), c.mediaList[i].getHeight());
+        } else if (mFormatType == FORMAT_ADAPTIVE_LARGEST && c.adaptive) {
+            /* update adaptive format to max size used */
+            format = c.mediaList[i].getAdaptiveFormat(0, 0);
+            for (Media media : c.mediaList) {
+                /* get the largest width, and the largest height independently */
+                if (media.getWidth() > format.getInteger(MediaFormat.KEY_MAX_WIDTH)) {
+                    format.setInteger(MediaFormat.KEY_MAX_WIDTH, media.getWidth());
+                }
+                if (media.getHeight() > format.getInteger(MediaFormat.KEY_MAX_HEIGHT)) {
+                    format.setInteger(MediaFormat.KEY_MAX_HEIGHT, media.getHeight());
+                }
+            }
+        }
+        return format;
+    }
+
+    public boolean isValid(Codec c) { return true; }
+    public abstract void addTests(TestList tests, Codec c);
+}
+
+abstract class Step {
+    private static final String TAG = "AdaptiveStep";
+
+    public Step(String title, Test instance, Codec codec, Media media) {
+        mTest = instance;
+        mCodec = codec;
+        mMedia = media;
+        mDescription = title + " on " + stepSurface().getSurface() + " using " +
+            mCodec.name + " and " + stepFormat();
+    }
+    public Step(String title, Test instance, Codec codec, int mediaIx) {
+        this(title, instance, codec, codec.mediaList[mediaIx]);
+    }
+    public Step(String title, Test instance, Codec codec) {
+        this(title, instance, codec, 0);
+    }
+    public Step(String description) {
+        mDescription = description;
+    }
+    public Step() { }
+
+    public abstract void run() throws Throwable;
+
+    private String mDescription;
+    private Test mTest;
+    private Codec mCodec;
+    private Media mMedia;
+    private int mWarnings;
+
+    /* TRICKY: use non-standard getter names so that we don't conflict with the getters
+       in the Test classes, as most test Steps are defined as anonymous classes inside
+       the test classes. */
+    public MediaFormat stepFormat() {
+        int ix = Arrays.asList(mCodec.mediaList).indexOf(mMedia);
+        return mTest.getFormat(mCodec, ix);
+    }
+
+    public TestSurface stepSurface() {
+        return mTest.getSurface();
+    }
+
+    public Media  stepMedia()       { return mMedia; }
+
+    public String getDescription() { return mDescription; }
+    public int    getWarnings()    { return mWarnings; }
+
+    public void warn(String message) {
+        Log.e(TAG, "WARNING: " + message + " in " + getDescription());
+        mWarnings++;
+    }
+    public void warn(String message, Throwable t) {
+        Log.e(TAG, "WARNING: " + message + " in " + getDescription(), t);
+        mWarnings++;
+    }
+    public void warn(Iterable<String> warnings) {
+        for (String warning: warnings) {
+            warn(warning);
+        }
+    }
+}
+
+interface TestSurface {
+    public Surface getSurface();
+    public long checksum();
+    public void release();
+    public void prepare();         // prepare surface prior to render
+    public void waitForDraw();     // wait for rendering to take place
+    public boolean needsToRunInSeparateThread();
+}
+
+class DecoderSurface extends OutputSurface implements TestSurface {
+    private ByteBuffer mBuf;
+    int mWidth;
+    int mHeight;
+    CRC32 mCRC;
+
+    public DecoderSurface(int width, int height, CRC32 crc) {
+        super(width, height);
+        mWidth = width;
+        mHeight = height;
+        mCRC = crc;
+        mBuf = ByteBuffer.allocateDirect(4 * width * height);
+    }
+
+    public void prepare() {
+        makeCurrent();
+    }
+
+    public void waitForDraw() {
+        awaitNewImage();
+        drawImage();
+    }
+
+    public long checksum() {
+        mBuf.position(0);
+        GLES20.glReadPixels(0, 0, mWidth, mHeight, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, mBuf);
+        mBuf.position(0);
+        return AdaptivePlaybackTest.checksum(mBuf, mBuf.capacity(), mCRC);
+    }
+
+    public void release() {
+        super.release();
+        mBuf = null;
+    }
+
+    public boolean needsToRunInSeparateThread() {
+        return true;
+    }
+}
+
+class ActivitySurface implements TestSurface {
+    private Surface mSurface;
+    public ActivitySurface(Surface s) {
+        mSurface = s;
+    }
+    public Surface getSurface() {
+        return mSurface;
+    }
+    public void prepare() { }
+    public void waitForDraw() { }
+    public long checksum() {
+        return 0;
+    }
+    public void release() {
+        // don't release activity surface, as it is reusable
+    }
+    public boolean needsToRunInSeparateThread() {
+        return false;
+    }
+}
+
diff --git a/tests/tests/media/src/android/media/cts/CompositionTextureView.java b/tests/tests/media/src/android/media/cts/CompositionTextureView.java
new file mode 100644
index 0000000..5d84a11
--- /dev/null
+++ b/tests/tests/media/src/android/media/cts/CompositionTextureView.java
@@ -0,0 +1,129 @@
+/*
+ * 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.media.cts;
+
+import java.util.concurrent.Semaphore;
+import java.util.concurrent.TimeUnit;
+
+import android.content.Context;
+import android.graphics.SurfaceTexture;
+import android.util.AttributeSet;
+import android.util.Log;
+import android.view.Surface;
+import android.view.TextureView;
+
+public class CompositionTextureView extends TextureView
+    implements TextureView.SurfaceTextureListener {
+    private static final String TAG = "CompositionTextureView";
+    private static final boolean DBG = true;
+    private static final boolean DBG_VERBOSE = false;
+
+    private final Semaphore mInitWaitSemaphore = new Semaphore(0);
+    private Surface mSurface;
+
+    public CompositionTextureView(Context context) {
+        super(context);
+        if (DBG) {
+            Log.i(TAG, "CompositionTextureView");
+        }
+    }
+
+    public CompositionTextureView(Context context, AttributeSet attrs) {
+        super(context, attrs);
+        if (DBG) {
+            Log.i(TAG, "CompositionTextureView");
+        }
+    }
+
+    public CompositionTextureView(Context context, AttributeSet attrs, int defStyle) {
+        super(context, attrs, defStyle);
+        if (DBG) {
+            Log.i(TAG, "CompositionTextureView");
+        }
+    }
+
+    public void startListening() {
+        if (DBG) {
+            Log.i(TAG, "startListening");
+        }
+        setSurfaceTextureListener(this);
+    }
+
+    @Override
+    public void onSurfaceTextureAvailable(SurfaceTexture arg0, int arg1, int arg2) {
+        if (DBG) {
+            Log.i(TAG, "onSurfaceTextureAvailable");
+        }
+        recreateSurface(arg0);
+        mInitWaitSemaphore.release();
+    }
+
+    @Override
+    public boolean onSurfaceTextureDestroyed(SurfaceTexture arg0) {
+        if (DBG) {
+            Log.i(TAG, "onSurfaceTextureDestroyed");
+        }
+        return true;
+    }
+
+    @Override
+    public void onSurfaceTextureSizeChanged(SurfaceTexture arg0, int arg1, int arg2) {
+        if (DBG) {
+            Log.i(TAG, "onSurfaceTextureSizeChanged");
+        }
+        recreateSurface(arg0);
+        mInitWaitSemaphore.release();
+    }
+
+    @Override
+    public void onSurfaceTextureUpdated(SurfaceTexture arg0) {
+        if (DBG_VERBOSE) {
+            Log.i(TAG, "onSurfaceTextureUpdated");
+        }
+        //ignore
+    }
+
+    public boolean waitForSurfaceReady(long timeoutMs) throws Exception {
+        if (isSurfaceTextureAvailable()) {
+            return true;
+        }
+        if (mInitWaitSemaphore.tryAcquire(timeoutMs, TimeUnit.MILLISECONDS)) {
+            return true;
+        }
+        return isSurfaceTextureAvailable();
+    }
+
+    private boolean isSurfaceTextureAvailable() {
+        SurfaceTexture surfaceTexture = getSurfaceTexture();
+        if (mSurface == null && surfaceTexture != null) {
+            recreateSurface(surfaceTexture);
+        }
+        return (mSurface != null);
+    }
+
+    private synchronized void recreateSurface(SurfaceTexture surfaceTexture) {
+        if (mSurface != null) {
+            mSurface.release();
+        }
+        mSurface = new Surface(surfaceTexture);
+    }
+
+    public Surface getSurface() {
+        return mSurface;
+    }
+
+}
diff --git a/tests/tests/media/src/android/media/cts/EncodeVirtualDisplayWithCompositionTest.java b/tests/tests/media/src/android/media/cts/EncodeVirtualDisplayWithCompositionTest.java
index 79afc12..dc767c9 100644
--- a/tests/tests/media/src/android/media/cts/EncodeVirtualDisplayWithCompositionTest.java
+++ b/tests/tests/media/src/android/media/cts/EncodeVirtualDisplayWithCompositionTest.java
@@ -18,12 +18,17 @@
 
 
 import android.app.Presentation;
+import android.content.ComponentName;
 import android.content.Context;
+import android.content.Intent;
+import android.content.ServiceConnection;
 import android.graphics.SurfaceTexture;
 import android.graphics.Typeface;
+import android.graphics.drawable.ColorDrawable;
 import android.hardware.display.DisplayManager;
 import android.hardware.display.VirtualDisplay;
 import android.media.MediaCodec;
+import android.media.MediaCodec.BufferInfo;
 import android.media.MediaCodecInfo;
 import android.media.MediaCodecInfo.CodecCapabilities;
 import android.media.MediaCodecInfo.CodecProfileLevel;
@@ -34,22 +39,35 @@
 import android.opengl.Matrix;
 import android.os.Bundle;
 import android.os.Handler;
+import android.os.IBinder;
 import android.os.Looper;
 import android.os.Message;
+import android.os.Parcel;
 import android.test.AndroidTestCase;
+import android.util.AttributeSet;
 import android.util.Log;
+import android.util.Pair;
 import android.view.Display;
 import android.view.Surface;
+import android.view.TextureView;
+import android.view.View;
+import android.view.ViewGroup;
+import android.view.ViewGroup.LayoutParams;
 import android.view.WindowManager;
+import android.widget.FrameLayout;
+import android.widget.ImageView;
 import android.widget.TextView;
 
+import com.android.cts.media.R;
+
 import java.nio.ByteBuffer;
 import java.nio.ByteOrder;
 import java.nio.FloatBuffer;
 import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.concurrent.Semaphore;
-import java.util.concurrent.atomic.AtomicBoolean;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.atomic.AtomicInteger;
 
 /**
  * Tests to check if MediaCodec encoding works with composition of multiple virtual displays
@@ -61,11 +79,38 @@
     private static final String TAG = "EncodeVirtualDisplayWithCompositionTest";
     private static final boolean DBG = false;
     private static final String MIME_TYPE = "video/avc";
-    private Handler mHandler;
-    private Surface mSurface;
-    private CodecInfo mCodecInfo;
+
+    private static final long DEFAULT_WAIT_TIMEOUT_MS = 5000;
+    private static final long DEFAULT_WAIT_TIMEOUT_US = 5000000;
+
+    private static final int COLOR_RED =  makeColor(100, 0, 0);
+    private static final int COLOR_BLUE =  makeColor(0, 100, 0);
+    private static final int COLOR_GREEN =  makeColor(0, 0, 100);
+    private static final int COLOR_GREY =  makeColor(100, 100, 100);
+
+    private static final int BITRATE_1080p = 20000000;
+    private static final int BITRATE_720p = 14000000;
+    private static final int BITRATE_800x480 = 14000000;
+    private static final int IFRAME_INTERVAL = 10;
+
+    private static final int MAX_NUM_WINDOWS = 3;
+
+    private static Handler sHandlerForRunOnMain = new Handler(Looper.getMainLooper());
+
+    private Surface mEncodingSurface;
+    private OutputSurface mDecodingSurface;
     private volatile boolean mCodecConfigReceived = false;
     private volatile boolean mCodecBufferReceived = false;
+    private EncodingHelper mEncodingHelper;
+    private MediaCodec mDecoder;
+    private final ByteBuffer mPixelBuf = ByteBuffer.allocateDirect(4);
+    private volatile boolean mIsQuitting = false;
+    private Throwable mTestException;
+    private VirtualDisplayPresentation mLocalPresentation;
+    private RemoteVirtualDisplayPresentation mRemotePresentation;
+    private ByteBuffer[] mDecoderInputBuffers;
+
+    /** event listener for test without verifying output */
     private EncoderEventListener mEncoderEventListener = new EncoderEventListener() {
         @Override
         public void onCodecConfig(ByteBuffer data, MediaCodec.BufferInfo info) {
@@ -81,24 +126,280 @@
         }
     };
 
-    @Override
-    protected void setUp() {
-        mHandler = new Handler(Looper.getMainLooper());
-        mCodecInfo = getAvcSupportedFormatInfo();
+    /* TEST_COLORS static initialization; need ARGB for ColorDrawable */
+    private static int makeColor(int red, int green, int blue) {
+        return 0xff << 24 | (red & 0xff) << 16 | (green & 0xff) << 8 | (blue & 0xff);
     }
 
-    public void testSingleVirtualDisplay() throws Exception {
-        doTestVirtualDisplays(1);
+    public void testVirtualDisplayRecycles() throws Exception {
+        doTestVirtualDisplayRecycles(3);
     }
 
-    public void testMultipleVirtualDisplays() throws Exception {
-        doTestVirtualDisplays(3);
+    public void testRendering800x480Locally() throws Throwable {
+        Log.i(TAG, "testRendering800x480Locally");
+        Pair<Integer, Integer> maxRes = checkMaxConcurrentEncodingDecodingResolution();
+        if (maxRes.first >= 800 && maxRes.second >= 480) {
+            runTestRenderingInSeparateThread(800, 480, false, false);
+        } else {
+            Log.w(TAG, "This H/W does not support 800x480");
+        }
     }
 
-    void doTestVirtualDisplays(int numDisplays) throws Exception {
-        final int NUM_CODEC_CREATION = 10;
-        final int NUM_DISPLAY_CREATION = 20;
-        final int NUM_RENDERING = 10;
+    public void testRenderingMaxResolutionLocally() throws Throwable {
+        Log.i(TAG, "testRenderingMaxResolutionLocally");
+        Pair<Integer, Integer> maxRes = checkMaxConcurrentEncodingDecodingResolution();
+        Log.w(TAG, "Trying resolution w:" + maxRes.first + " h:" + maxRes.second);
+        runTestRenderingInSeparateThread(maxRes.first, maxRes.second, false, false);
+    }
+
+    public void testRendering800x480Remotely() throws Throwable {
+        Log.i(TAG, "testRendering800x480Remotely");
+        Pair<Integer, Integer> maxRes = checkMaxConcurrentEncodingDecodingResolution();
+        if (maxRes.first >= 800 && maxRes.second >= 480) {
+            runTestRenderingInSeparateThread(800, 480, true, false);
+        } else {
+            Log.w(TAG, "This H/W does not support 800x480");
+        }
+    }
+
+    public void testRenderingMaxResolutionRemotely() throws Throwable {
+        Log.i(TAG, "testRenderingMaxResolutionRemotely");
+        Pair<Integer, Integer> maxRes = checkMaxConcurrentEncodingDecodingResolution();
+        Log.w(TAG, "Trying resolution w:" + maxRes.first + " h:" + maxRes.second);
+        runTestRenderingInSeparateThread(maxRes.first, maxRes.second, true, false);
+    }
+
+    public void testRendering800x480RemotelyWith3Windows() throws Throwable {
+        Log.i(TAG, "testRendering800x480RemotelyWith3Windows");
+        Pair<Integer, Integer> maxRes = checkMaxConcurrentEncodingDecodingResolution();
+        if (maxRes.first >= 800 && maxRes.second >= 480) {
+            runTestRenderingInSeparateThread(800, 480, true, true);
+        } else {
+            Log.w(TAG, "This H/W does not support 800x480");
+        }
+    }
+
+    public void testRendering800x480LocallyWith3Windows() throws Throwable {
+        Log.i(TAG, "testRendering800x480LocallyWith3Windows");
+        Pair<Integer, Integer> maxRes = checkMaxConcurrentEncodingDecodingResolution();
+        if (maxRes.first >= 800 && maxRes.second >= 480) {
+            runTestRenderingInSeparateThread(800, 480, false, true);
+        } else {
+            Log.w(TAG, "This H/W does not support 800x480");
+        }
+    }
+
+    /**
+     * Run rendering test in a separate thread. This is necessary as {@link OutputSurface} requires
+     * constructing it in a non-test thread.
+     * @param w
+     * @param h
+     * @throws Exception
+     */
+    private void runTestRenderingInSeparateThread(final int w, final int h,
+            final boolean runRemotely, final boolean multipleWindows) throws Throwable {
+        mTestException = null;
+        Thread renderingThread = new Thread(new Runnable() {
+            public void run() {
+                try {
+                    doTestRenderingOutput(w, h, runRemotely, multipleWindows);
+                } catch (Throwable t) {
+                    t.printStackTrace();
+                    mTestException = t;
+                }
+            }
+        });
+        renderingThread.start();
+        renderingThread.join(20000);
+        assertTrue(!renderingThread.isAlive());
+        if (mTestException != null) {
+            throw mTestException;
+        }
+    }
+
+    private void doTestRenderingOutput(int w, int h, boolean runRemotely, boolean multipleWindows)
+            throws Throwable {
+        if (DBG) {
+            Log.i(TAG, "doTestRenderingOutput for w:" + w + " h:" + h);
+        }
+        try {
+            mIsQuitting = false;
+            mDecoder = MediaCodec.createDecoderByType(MIME_TYPE);
+            MediaFormat decoderFormat = MediaFormat.createVideoFormat(MIME_TYPE, w, h);
+            mDecodingSurface = new OutputSurface(w, h);
+            mDecoder.configure(decoderFormat, mDecodingSurface.getSurface(), null, 0);
+            mDecoder.start();
+            mDecoderInputBuffers = mDecoder.getInputBuffers();
+
+            mEncodingHelper = new EncodingHelper();
+            mEncodingSurface = mEncodingHelper.startEncoding(w, h,
+                    new EncoderEventListener() {
+                @Override
+                public void onCodecConfig(ByteBuffer data, BufferInfo info) {
+                    if (DBG) {
+                        Log.i(TAG, "onCodecConfig l:" + info.size);
+                    }
+                    handleEncodedData(data, info);
+                }
+
+                @Override
+                public void onBufferReady(ByteBuffer data, BufferInfo info) {
+                    if (DBG) {
+                        Log.i(TAG, "onBufferReady l:" + info.size);
+                    }
+                    handleEncodedData(data, info);
+                }
+
+                @Override
+                public void onError(String errorMessage) {
+                    fail(errorMessage);
+                }
+
+                private void handleEncodedData(ByteBuffer data, BufferInfo info) {
+                    if (mIsQuitting) {
+                        if (DBG) {
+                            Log.i(TAG, "ignore data as test is quitting");
+                        }
+                        return;
+                    }
+                    int inputBufferIndex = mDecoder.dequeueInputBuffer(DEFAULT_WAIT_TIMEOUT_US);
+                    if (inputBufferIndex < 0) {
+                        if (DBG) {
+                            Log.i(TAG, "dequeueInputBuffer returned:" + inputBufferIndex);
+                        }
+                        return;
+                    }
+                    assertTrue(inputBufferIndex >= 0);
+                    ByteBuffer inputBuffer = mDecoderInputBuffers[inputBufferIndex];
+                    inputBuffer.clear();
+                    inputBuffer.put(data);
+                    mDecoder.queueInputBuffer(inputBufferIndex, 0, info.size,
+                            info.presentationTimeUs, info.flags);
+                }
+            });
+            GlCompositor compositor = new GlCompositor();
+            if (DBG) {
+                Log.i(TAG, "start composition");
+            }
+            compositor.startComposition(mEncodingSurface, w, h, multipleWindows ? 3 : 1);
+
+            if (DBG) {
+                Log.i(TAG, "create display");
+            }
+
+            Renderer renderer = null;
+            if (runRemotely) {
+                mRemotePresentation = new RemoteVirtualDisplayPresentation(getContext(),
+                        compositor.getWindowSurface(multipleWindows? 1 : 0), w, h);
+                mRemotePresentation.connect();
+                mRemotePresentation.start();
+                renderer = mRemotePresentation;
+            } else {
+                mLocalPresentation = new VirtualDisplayPresentation(getContext(),
+                        compositor.getWindowSurface(multipleWindows? 1 : 0), w, h);
+                mLocalPresentation.createVirtualDisplay();
+                mLocalPresentation.createPresentation();
+                renderer = mLocalPresentation;
+            }
+
+            if (DBG) {
+                Log.i(TAG, "start rendering and check");
+            }
+            renderColorAndCheckResult(renderer, w, h, COLOR_RED);
+            renderColorAndCheckResult(renderer, w, h, COLOR_BLUE);
+            renderColorAndCheckResult(renderer, w, h, COLOR_GREEN);
+            renderColorAndCheckResult(renderer, w, h, COLOR_GREY);
+
+            mIsQuitting = true;
+            if (runRemotely) {
+                mRemotePresentation.disconnect();
+            } else {
+                mLocalPresentation.dismissPresentation();
+                mLocalPresentation.destroyVirtualDisplay();
+            }
+
+            compositor.stopComposition();
+        } finally {
+            if (mEncodingHelper != null) {
+                mEncodingHelper.stopEncoding();
+                mEncodingHelper = null;
+            }
+            if (mDecoder != null) {
+                mDecoder.stop();
+                mDecoder.release();
+                mDecoder = null;
+            }
+            if (mDecodingSurface != null) {
+                mDecodingSurface.release();
+                mDecodingSurface = null;
+            }
+        }
+    }
+
+    private static final int NUM_MAX_RETRY = 120;
+    private static final int IMAGE_WAIT_TIMEOUT_MS = 1000;
+
+    private void renderColorAndCheckResult(Renderer renderer, int w, int h,
+            int color) throws Exception {
+        BufferInfo info = new BufferInfo();
+        for (int i = 0; i < NUM_MAX_RETRY; i++) {
+            renderer.doRendering(color);
+            int bufferIndex = mDecoder.dequeueOutputBuffer(info,  DEFAULT_WAIT_TIMEOUT_US);
+            if (DBG) {
+                Log.i(TAG, "decoder dequeueOutputBuffer returned " + bufferIndex);
+            }
+            if (bufferIndex < 0) {
+                continue;
+            }
+            mDecoder.releaseOutputBuffer(bufferIndex, true);
+            if (mDecodingSurface.checkForNewImage(IMAGE_WAIT_TIMEOUT_MS)) {
+                mDecodingSurface.drawImage();
+                if (checkSurfaceFrameColor(w, h, color)) {
+                    Log.i(TAG, "color " + Integer.toHexString(color) + " matched");
+                    return;
+                }
+            } else if(DBG) {
+                Log.i(TAG, "no rendering yet");
+            }
+        }
+        fail("Color did not match");
+    }
+
+    private boolean checkSurfaceFrameColor(int w, int h, int color) {
+        // Read a pixel from the center of the surface.  Might want to read from multiple points
+        // and average them together.
+        int x = w / 2;
+        int y = h / 2;
+        GLES20.glReadPixels(x, y, 1, 1, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, mPixelBuf);
+        int r = mPixelBuf.get(0) & 0xff;
+        int g = mPixelBuf.get(1) & 0xff;
+        int b = mPixelBuf.get(2) & 0xff;
+
+        int redExpected = (color >> 16) & 0xff;
+        int greenExpected = (color >> 8) & 0xff;
+        int blueExpected = color & 0xff;
+        if (approxEquals(redExpected, r) && approxEquals(greenExpected, g)
+                && approxEquals(blueExpected, b)) {
+            return true;
+        }
+        Log.i(TAG, "expected 0x" + Integer.toHexString(color) + " got 0x"
+                + Integer.toHexString(makeColor(r, g, b)));
+        return false;
+    }
+
+    /**
+     * Determines if two color values are approximately equal.
+     */
+    private static boolean approxEquals(int expected, int actual) {
+        final int MAX_DELTA = 4;
+        return Math.abs(expected - actual) <= MAX_DELTA;
+    }
+
+    private static final int NUM_CODEC_CREATION = 5;
+    private static final int NUM_DISPLAY_CREATION = 10;
+    private static final int NUM_RENDERING = 10;
+    private void doTestVirtualDisplayRecycles(int numDisplays) throws Exception {
+        CodecInfo codecInfo = getAvcSupportedFormatInfo();
         VirtualDisplayPresentation[] virtualDisplays = new VirtualDisplayPresentation[numDisplays];
         for (int i = 0; i < NUM_CODEC_CREATION; i++) {
             mCodecConfigReceived = false;
@@ -107,12 +408,13 @@
                 Log.i(TAG, "start encoding");
             }
             EncodingHelper encodingHelper = new EncodingHelper();
-            mSurface = encodingHelper.startEncoding(mCodecInfo, mEncoderEventListener);
+            mEncodingSurface = encodingHelper.startEncoding(codecInfo.mMaxW, codecInfo.mMaxH,
+                    mEncoderEventListener);
             GlCompositor compositor = new GlCompositor();
             if (DBG) {
                 Log.i(TAG, "start composition");
             }
-            compositor.startComposition(mSurface, mCodecInfo.mMaxW, mCodecInfo.mMaxH,
+            compositor.startComposition(mEncodingSurface, codecInfo.mMaxW, codecInfo.mMaxH,
                     numDisplays);
             for (int j = 0; j < NUM_DISPLAY_CREATION; j++) {
                 if (DBG) {
@@ -122,8 +424,7 @@
                     virtualDisplays[k] =
                         new VirtualDisplayPresentation(getContext(),
                                 compositor.getWindowSurface(k),
-                                mCodecInfo.mMaxW/numDisplays, mCodecInfo.mMaxH,
-                                VirtualDisplayPresentation.RENDERING_VIEW_HIERARCHY);
+                                codecInfo.mMaxW/numDisplays, codecInfo.mMaxH);
                     virtualDisplays[k].createVirtualDisplay();
                     virtualDisplays[k].createPresentation();
                 }
@@ -132,7 +433,7 @@
                 }
                 for (int k = 0; k < NUM_RENDERING; k++) {
                     for (int l = 0; l < numDisplays; l++) {
-                        virtualDisplays[l].doRendering();
+                        virtualDisplays[l].doRendering(COLOR_RED);
                     }
                     // do not care how many frames are actually rendered.
                     Thread.sleep(1);
@@ -166,14 +467,16 @@
         private MediaCodec mEncoder;
         private volatile boolean mStopEncoding = false;
         private EncoderEventListener mEventListener;
-        private CodecInfo mCodecInfo;
+        private int mW;
+        private int mH;
         private Thread mEncodingThread;
-        private Surface mSurface;
-        private static final int IFRAME_INTERVAL = 10;
+        private Surface mEncodingSurface;
         private Semaphore mInitCompleted = new Semaphore(0);
 
-        Surface startEncoding(CodecInfo codecInfo, EncoderEventListener eventListener) {
-            mCodecInfo = codecInfo;
+        Surface startEncoding(int w, int h, EncoderEventListener eventListener) {
+            mStopEncoding = false;
+            mW = w;
+            mH = h;
             mEventListener = eventListener;
             mEncodingThread = new Thread(new Runnable() {
                 @Override
@@ -181,6 +484,7 @@
                     try {
                         doEncoding();
                     } catch (Exception e) {
+                        e.printStackTrace();
                         mEventListener.onError(e.toString());
                     }
                 }
@@ -197,7 +501,7 @@
             } catch (InterruptedException e) {
                 fail("should not happen");
             }
-            return mSurface;
+            return mEncodingSurface;
         }
 
         void stopEncoding() {
@@ -213,25 +517,36 @@
 
         private void doEncoding() throws Exception {
             final int TIMEOUT_USEC_NORMAL = 1000000;
-            MediaFormat format = MediaFormat.createVideoFormat(MIME_TYPE, mCodecInfo.mMaxW,
-                    mCodecInfo.mMaxH);
+            MediaFormat format = MediaFormat.createVideoFormat(MIME_TYPE, mW, mH);
             format.setInteger(MediaFormat.KEY_COLOR_FORMAT,
                     MediaCodecInfo.CodecCapabilities.COLOR_FormatSurface);
-            format.setInteger(MediaFormat.KEY_BIT_RATE, mCodecInfo.mBitRate);
-            format.setInteger(MediaFormat.KEY_FRAME_RATE, mCodecInfo.mFps);
+            int bitRate = 10000000;
+            if (mW == 1920 && mH == 1080) {
+                bitRate = BITRATE_1080p;
+            } else if (mW == 1280 && mH == 720) {
+                bitRate = BITRATE_720p;
+            } else if (mW == 800 && mH == 480) {
+                bitRate = BITRATE_800x480;
+            }
+            format.setInteger(MediaFormat.KEY_BIT_RATE, bitRate);
+            format.setInteger(MediaFormat.KEY_FRAME_RATE, 30);
             format.setInteger(MediaFormat.KEY_I_FRAME_INTERVAL, IFRAME_INTERVAL);
-            // Create a MediaCodec for the desired codec, then configure it as an encoder with
-            // our desired properties.  Request a Surface to use for input.
-            mEncoder = MediaCodec.createByCodecName(mCodecInfo.mCodecName);
+            mEncoder = MediaCodec.createEncoderByType(MIME_TYPE);
             mEncoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE);
-            mSurface = mEncoder.createInputSurface();
+            mEncodingSurface = mEncoder.createInputSurface();
             mEncoder.start();
             mInitCompleted.release();
+            if (DBG) {
+                Log.i(TAG, "starting encoder");
+            }
             try {
                 ByteBuffer[] encoderOutputBuffers = mEncoder.getOutputBuffers();
                 MediaCodec.BufferInfo info = new MediaCodec.BufferInfo();
                 while (!mStopEncoding) {
                     int index = mEncoder.dequeueOutputBuffer(info, TIMEOUT_USEC_NORMAL);
+                    if (DBG) {
+                        Log.i(TAG, "dequeOutputBuffer returned " + index);
+                    }
                     if (index >= 0) {
                         if ((info.flags & MediaCodec.BUFFER_FLAG_CODEC_CONFIG) != 0) {
                             Log.i(TAG, "codec config data");
@@ -241,6 +556,7 @@
                             mEventListener.onCodecConfig(encodedData, info);
                             mEncoder.releaseOutputBuffer(index, false);
                         } else if ((info.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0) {
+                            Log.i(TAG, "EOS, stopping encoding");
                             break;
                         } else {
                             ByteBuffer encodedData = encoderOutputBuffers[index];
@@ -251,10 +567,15 @@
                         }
                     }
                 }
+            } catch (Exception e) {
+                e.printStackTrace();
+                throw e;
             } finally {
                 mEncoder.stop();
                 mEncoder.release();
                 mEncoder = null;
+                mEncodingSurface.release();
+                mEncodingSurface = null;
             }
         }
     }
@@ -266,10 +587,8 @@
         private Surface mSurface;
         private int mWidth;
         private int mHeight;
-        private int mNumWindows;
-        private ArrayList<GlWindow> mWindows = new ArrayList<GlWindow>();
-        private HashMap<SurfaceTexture, GlWindow> mSurfaceTextureToWindowMap =
-                new HashMap<SurfaceTexture, GlWindow>();
+        private volatile int mNumWindows;
+        private GlWindow mTopWindow;
         private Thread mCompositionThread;
         private Semaphore mStartCompletionSemaphore;
         private Semaphore mRecreationCompletionSemaphore;
@@ -282,6 +601,7 @@
         private int mGlaPositionHandle;
         private int mGlaTextureHandle;
         private float[] mMVPMatrix = new float[16];
+        private TopWindowVirtualDisplayPresentation mTopPresentation;
 
         private static final String VERTEX_SHADER =
                 "uniform mat4 uMVPMatrix;\n" +
@@ -303,7 +623,7 @@
                 "  gl_FragColor = texture2D(sTexture, vTextureCoord);\n" +
                 "}\n";
 
-        void startComposition(Surface surface, int w, int h, int numWindows) {
+        void startComposition(Surface surface, int w, int h, int numWindows) throws Exception {
             mSurface = surface;
             mWidth = w;
             mHeight = h;
@@ -329,14 +649,18 @@
         }
 
         Surface getWindowSurface(int windowIndex) {
-            return mWindows.get(windowIndex).getSurface();
+            return mTopPresentation.getSurface(windowIndex);
         }
 
         void recreateWindows() throws Exception {
             mRecreationCompletionSemaphore = new Semaphore(0);
             Message msg = mHandler.obtainMessage(CompositionHandler.DO_RECREATE_WINDOWS);
             mHandler.sendMessage(msg);
-            mRecreationCompletionSemaphore.acquire();
+            if(!mRecreationCompletionSemaphore.tryAcquire(DEFAULT_WAIT_TIMEOUT_MS,
+                    TimeUnit.MILLISECONDS)) {
+                fail("recreation timeout");
+            }
+            mTopPresentation.waitForSurfaceReady(DEFAULT_WAIT_TIMEOUT_MS);
         }
 
         @Override
@@ -344,16 +668,20 @@
             if (DBG) {
                 Log.i(TAG, "onFrameAvailable " + surface);
             }
-            GlWindow w = mSurfaceTextureToWindowMap.get(surface);
+            GlWindow w = mTopWindow;
             if (w != null) {
                 w.markTextureUpdated();
                 requestUpdate();
             } else {
-                Log.w(TAG, "cannot map Surface " + surface + " to window");
+                Log.w(TAG, "top window gone");
             }
         }
 
         private void requestUpdate() {
+            Thread compositionThread = mCompositionThread;
+            if (compositionThread == null || !compositionThread.isAlive()) {
+                return;
+            }
             Message msg = mHandler.obtainMessage(CompositionHandler.DO_RENDERING);
             mHandler.sendMessage(msg);
         }
@@ -442,25 +770,27 @@
             Matrix.orthoM(projMatrix, 0, -wMid, wMid, -hMid, hMid, 1, 10);
             Matrix.multiplyMM(mMVPMatrix, 0, projMatrix, 0, vMatrix, 0);
             createWindows();
+
         }
 
         private void createWindows() throws GlException {
-            // windows placed horizontally
-            int windowWidth = mWidth / mNumWindows;
-            for (int i = 0; i < mNumWindows; i++) {
-                GlWindow window = new GlWindow(this, i * windowWidth, 0, windowWidth, mHeight);
-                window.init();
-                mSurfaceTextureToWindowMap.put(window.getSurfaceTexture(), window);
-                mWindows.add(window);
-            }
+            mTopWindow = new GlWindow(this, 0, 0, mWidth, mHeight);
+            mTopWindow.init();
+            mTopPresentation = new TopWindowVirtualDisplayPresentation(mContext,
+                    mTopWindow.getSurface(), mWidth, mHeight, mNumWindows);
+            mTopPresentation.createVirtualDisplay();
+            mTopPresentation.createPresentation();
+            ((TopWindowPresentation) mTopPresentation.getPresentation()).populateWindows();
         }
 
         private void cleanupGl() {
-            for (GlWindow w: mWindows) {
-                w.cleanup();
+            if (mTopPresentation != null) {
+                mTopPresentation.dismissPresentation();
+                mTopPresentation.destroyVirtualDisplay();
             }
-            mWindows.clear();
-            mSurfaceTextureToWindowMap.clear();
+            if (mTopWindow != null) {
+                mTopWindow.cleanup();
+            }
             if (mEglHelper != null) {
                 mEglHelper.release();
             }
@@ -470,52 +800,48 @@
             if (DBG) {
                 Log.i(TAG, "doGlRendering");
             }
-            for (GlWindow w: mWindows) {
-                w.updateTexImageIfNecessary();
-            }
+            mTopWindow.updateTexImageIfNecessary();
             GLES20.glClearColor(0.0f, 1.0f, 0.0f, 1.0f);
             GLES20.glClear(GLES20.GL_DEPTH_BUFFER_BIT | GLES20.GL_COLOR_BUFFER_BIT);
 
             GLES20.glUseProgram(mGlProgramId);
-            for (GlWindow w: mWindows) {
-                GLES20.glUniformMatrix4fv(mGluMVPMatrixHandle, 1, false, mMVPMatrix, 0);
-                w.onDraw(mGluSTMatrixHandle, mGlaPositionHandle, mGlaTextureHandle);
-                checkGlError("window draw");
-            }
+            GLES20.glUniformMatrix4fv(mGluMVPMatrixHandle, 1, false, mMVPMatrix, 0);
+            mTopWindow.onDraw(mGluSTMatrixHandle, mGlaPositionHandle, mGlaTextureHandle);
+            checkGlError("window draw");
             mEglHelper.swapBuffers();
         }
+
         private void doRecreateWindows() throws GlException {
-            for (GlWindow w: mWindows) {
-                w.cleanup();
-            }
-            mWindows.clear();
-            mSurfaceTextureToWindowMap.clear();
+            mTopPresentation.dismissPresentation();
+            mTopPresentation.destroyVirtualDisplay();
+            mTopWindow.cleanup();
             createWindows();
             mRecreationCompletionSemaphore.release();
         }
 
-        private void waitForStartCompletion() {
-            try {
-                mStartCompletionSemaphore.acquire();
-            } catch (InterruptedException e) {
-                //ignore
+        private void waitForStartCompletion() throws Exception {
+            if (!mStartCompletionSemaphore.tryAcquire(DEFAULT_WAIT_TIMEOUT_MS,
+                    TimeUnit.MILLISECONDS)) {
+                fail("start timeout");
             }
             mStartCompletionSemaphore = null;
+            mTopPresentation.waitForSurfaceReady(DEFAULT_WAIT_TIMEOUT_MS);
         }
 
         private class CompositionRunnable implements Runnable {
             @Override
             public void run() {
                 try {
-                    initGl();
-                    Looper.prepare();
                     mLooper = Looper.myLooper();
+                    Looper.prepare();
                     mHandler = new CompositionHandler();
+                    initGl();
                     // init done
                     mStartCompletionSemaphore.release();
                     Looper.loop();
                 } catch (GlException e) {
-                    // ignore and clean-up
+                    e.printStackTrace();
+                    fail("got gl exception");
                 } finally {
                     cleanupGl();
                     mHandler = null;
@@ -560,7 +886,7 @@
             private volatile Surface mSurface;
             private FloatBuffer mVerticesData;
             private float[] mSTMatrix = new float[16];
-            private AtomicBoolean mTextureUpdated = new AtomicBoolean(false);
+            private AtomicInteger mNumTextureUpdated = new AtomicInteger(0);
             private GlCompositor mCompositor;
 
             /**
@@ -620,7 +946,7 @@
             }
 
             public void cleanup() {
-                mTextureUpdated.set(false);
+                mNumTextureUpdated.set(0);
                 if (mTextureId != 0) {
                     int[] textures = new int[] {
                             mTextureId
@@ -628,30 +954,38 @@
                     GLES20.glDeleteTextures(1, textures, 0);
                 }
                 GLES20.glFinish();
-                mSurface.release();
-                mSurface = null;
-                mSurfaceTexture.release();
-                mSurfaceTexture = null;
+                if (mSurface != null) {
+                    mSurface.release();
+                    mSurface = null;
+                }
+                if (mSurfaceTexture != null) {
+                    mSurfaceTexture.release();
+                    mSurfaceTexture = null;
+                }
             }
 
             /**
              * make texture as updated so that it can be updated in the next rendering.
              */
             public void markTextureUpdated() {
-                mTextureUpdated.set(true);
+                mNumTextureUpdated.incrementAndGet();
             }
 
             /**
              * update texture for rendering if it is updated.
              */
             public void updateTexImageIfNecessary() {
-                if (mTextureUpdated.getAndSet(false)) {
+                int numTextureUpdated = mNumTextureUpdated.getAndDecrement();
+                if (numTextureUpdated > 0) {
                     if (DBG) {
                         Log.i(TAG, "updateTexImageIfNecessary " + this);
                     }
                     mSurfaceTexture.updateTexImage();
                     mSurfaceTexture.getTransformMatrix(mSTMatrix);
                 }
+                if (numTextureUpdated < 0) {
+                    fail("should not happen");
+                }
             }
 
             /**
@@ -701,26 +1035,24 @@
         }
     }
 
-    private class VirtualDisplayPresentation {
-        public static final int RENDERING_OPENGL = 0;
-        public static final int RENDERING_VIEW_HIERARCHY = 1;
+    private interface Renderer {
+        void doRendering(final int color) throws Exception;
+    }
 
-        private Context mContext;
-        private Surface mSurface;
-        private int mWidth;
-        private int mHeight;
-        private int mRenderingType;
+    private static class VirtualDisplayPresentation implements Renderer {
+        protected final Context mContext;
+        protected final Surface mSurface;
+        protected final int mWidth;
+        protected final int mHeight;
+        protected VirtualDisplay mVirtualDisplay;
+        protected TestPresentationBase mPresentation;
         private final DisplayManager mDisplayManager;
-        private VirtualDisplay mVirtualDisplay;
-        private TestPresentation mPresentation;
 
-        VirtualDisplayPresentation(Context context, Surface surface, int w, int h,
-                int renderingType) {
+        VirtualDisplayPresentation(Context context, Surface surface, int w, int h) {
             mContext = context;
             mSurface = surface;
             mWidth = w;
             mHeight = h;
-            mRenderingType = renderingType;
             mDisplayManager = (DisplayManager)context.getSystemService(Context.DISPLAY_SERVICE);
         }
 
@@ -747,13 +1079,20 @@
             runOnMainSync(new Runnable() {
                 @Override
                 public void run() {
-                    mPresentation = new TestPresentation(getContext(),
-                            mVirtualDisplay.getDisplay());
+                    mPresentation = doCreatePresentation();
                     mPresentation.show();
                 }
             });
         }
 
+        protected TestPresentationBase doCreatePresentation() {
+            return new TestPresentation(mContext, mVirtualDisplay.getDisplay());
+        }
+
+        TestPresentationBase getPresentation() {
+            return mPresentation;
+        }
+
         void dismissPresentation() {
             runOnMainSync(new Runnable() {
                 @Override
@@ -763,46 +1102,192 @@
             });
         }
 
-        void doRendering() {
+        @Override
+        public void doRendering(final int color) throws Exception {
             runOnMainSync(new Runnable() {
                 @Override
                 public void run() {
-                    mPresentation.doRendering();
+                    mPresentation.doRendering(color);
+                }
+            });
+        }
+    }
+
+    private static class TestPresentationBase extends Presentation {
+
+        public TestPresentationBase(Context outerContext, Display display) {
+            super(outerContext, display);
+            getWindow().setType(WindowManager.LayoutParams.TYPE_PRIVATE_PRESENTATION);
+            getWindow().addFlags(WindowManager.LayoutParams.FLAG_LOCAL_FOCUS_MODE);
+            getWindow().addFlags(WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED);
+        }
+
+        public void doRendering(int color) {
+            // to be implemented by child
+        }
+    }
+
+    private static class TestPresentation extends TestPresentationBase {
+        private ImageView mImageView;
+
+        public TestPresentation(Context outerContext, Display display) {
+            super(outerContext, display);
+        }
+
+        @Override
+        protected void onCreate(Bundle savedInstanceState) {
+            super.onCreate(savedInstanceState);
+            mImageView = new ImageView(getContext());
+            mImageView.setImageDrawable(new ColorDrawable(COLOR_RED));
+            mImageView.setLayoutParams(new LayoutParams(
+                    LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
+            setContentView(mImageView);
+        }
+
+        public void doRendering(int color) {
+            mImageView.setImageDrawable(new ColorDrawable(color));
+        }
+    }
+
+    private static class TopWindowPresentation extends TestPresentationBase {
+        private FrameLayout[] mWindowsLayout = new FrameLayout[MAX_NUM_WINDOWS];
+        private CompositionTextureView[] mWindows = new CompositionTextureView[MAX_NUM_WINDOWS];
+        private final int mNumWindows;
+        private final Semaphore mWindowWaitSemaphore = new Semaphore(0);
+
+        public TopWindowPresentation(int numWindows, Context outerContext, Display display) {
+            super(outerContext, display);
+            mNumWindows = numWindows;
+        }
+
+        @Override
+        protected void onCreate(Bundle savedInstanceState) {
+            super.onCreate(savedInstanceState);
+            if (DBG) {
+                Log.i(TAG, "TopWindowPresentation onCreate, numWindows " + mNumWindows);
+            }
+            setContentView(R.layout.composition_layout);
+            mWindowsLayout[0] = (FrameLayout) findViewById(R.id.window0);
+            mWindowsLayout[1] = (FrameLayout) findViewById(R.id.window1);
+            mWindowsLayout[2] = (FrameLayout) findViewById(R.id.window2);
+        }
+
+        public void populateWindows() {
+            runOnMain(new Runnable() {
+                public void run() {
+                    for (int i = 0; i < mNumWindows; i++) {
+                        mWindows[i] = new CompositionTextureView(getContext());
+                        mWindows[i].setLayoutParams(new ViewGroup.LayoutParams(
+                                ViewGroup.LayoutParams.MATCH_PARENT,
+                                ViewGroup.LayoutParams.MATCH_PARENT));
+                        mWindowsLayout[i].setVisibility(View.VISIBLE);
+                        mWindowsLayout[i].addView(mWindows[i]);
+                        mWindows[i].startListening();
+                    }
+                    mWindowWaitSemaphore.release();
                 }
             });
         }
 
-        private class TestPresentation extends Presentation {
-            private TextView mTextView;
-            private int mRenderingCount = 0;
-
-            public TestPresentation(Context outerContext, Display display) {
-                super(outerContext, display);
-                getWindow().setType(WindowManager.LayoutParams.TYPE_PRIVATE_PRESENTATION);
-            }
-
-            @Override
-            protected void onCreate(Bundle savedInstanceState) {
-                super.onCreate(savedInstanceState);
-                if (VirtualDisplayPresentation.this.mRenderingType == RENDERING_OPENGL) {
-                    //TODO add init for opengl renderer
-                } else {
-                    mTextView = new TextView(getContext());
-                    mTextView.setTextSize(14);
-                    mTextView.setTypeface(Typeface.DEFAULT_BOLD);
-                    mTextView.setText(Integer.toString(mRenderingCount));
-                    setContentView(mTextView);
+        public void waitForSurfaceReady(long timeoutMs) throws Exception {
+            mWindowWaitSemaphore.tryAcquire(DEFAULT_WAIT_TIMEOUT_MS, TimeUnit.MILLISECONDS);
+            for (int i = 0; i < mNumWindows; i++) {
+                if(!mWindows[i].waitForSurfaceReady(timeoutMs)) {
+                    fail("surface wait timeout");
                 }
             }
+        }
 
-            public void doRendering() {
-                if (VirtualDisplayPresentation.this.mRenderingType == RENDERING_OPENGL) {
-                    //TODO add opengl rendering
-                } else {
-                    mRenderingCount++;
-                    mTextView.setText(Integer.toString(mRenderingCount));
-                }
+        public Surface getSurface(int windowIndex) {
+            Surface surface = mWindows[windowIndex].getSurface();
+            assertNotNull(surface);
+            return surface;
+        }
+    }
+
+    private static class TopWindowVirtualDisplayPresentation extends VirtualDisplayPresentation {
+        private final int mNumWindows;
+
+        TopWindowVirtualDisplayPresentation(Context context, Surface surface, int w, int h,
+                int numWindows) {
+            super(context, surface, w, h);
+            assertNotNull(surface);
+            mNumWindows = numWindows;
+        }
+
+        void waitForSurfaceReady(long timeoutMs) throws Exception {
+            ((TopWindowPresentation) mPresentation).waitForSurfaceReady(timeoutMs);
+        }
+
+        Surface getSurface(int windowIndex) {
+            return ((TopWindowPresentation) mPresentation).getSurface(windowIndex);
+        }
+
+        protected TestPresentationBase doCreatePresentation() {
+            return new TopWindowPresentation(mNumWindows, mContext, mVirtualDisplay.getDisplay());
+        }
+    }
+
+    private static class RemoteVirtualDisplayPresentation implements Renderer {
+        /** argument: Surface, int w, int h, return none */
+        private static final int BINDER_CMD_START = IBinder.FIRST_CALL_TRANSACTION;
+        /** argument: int color, return none */
+        private static final int BINDER_CMD_RENDER = IBinder.FIRST_CALL_TRANSACTION + 1;
+
+        private final Context mContext;
+        private final Surface mSurface;
+        private final int mWidth;
+        private final int mHeight;
+
+        private IBinder mService;
+        private final Semaphore mConnectionWait = new Semaphore(0);
+        private final ServiceConnection mConnection = new ServiceConnection() {
+
+            public void onServiceConnected(ComponentName arg0, IBinder arg1) {
+                mService = arg1;
+                mConnectionWait.release();
             }
+
+            public void onServiceDisconnected(ComponentName arg0) {
+                //ignore
+            }
+
+        };
+
+        RemoteVirtualDisplayPresentation(Context context, Surface surface, int w, int h) {
+            mContext = context;
+            mSurface = surface;
+            mWidth = w;
+            mHeight = h;
+        }
+
+        void connect() throws Exception {
+            Intent intent = new Intent();
+            intent.setClassName("com.android.cts.media",
+                    "android.media.cts.RemoteVirtualDisplayService");
+            mContext.bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
+            if (!mConnectionWait.tryAcquire(DEFAULT_WAIT_TIMEOUT_MS, TimeUnit.MILLISECONDS)) {
+                fail("cannot bind to service");
+            }
+        }
+
+        void disconnect() {
+            mContext.unbindService(mConnection);
+        }
+
+        void start() throws Exception {
+            Parcel parcel = Parcel.obtain();
+            mSurface.writeToParcel(parcel, 0);
+            parcel.writeInt(mWidth);
+            parcel.writeInt(mHeight);
+            mService.transact(BINDER_CMD_START, parcel, null, 0);
+        }
+
+        @Override
+        public void doRendering(int color) throws Exception {
+            Parcel parcel = Parcel.obtain();
+            parcel.writeInt(color);
+            mService.transact(BINDER_CMD_RENDER, parcel, null, 0);
         }
     }
 
@@ -813,6 +1298,7 @@
         public int mBitRate;
         public String mCodecName;
     };
+
     /**
      * Returns the first codec capable of encoding the specified MIME type, or null if no
      * match was found.
@@ -911,9 +1397,93 @@
         return info;
     }
 
-    public void runOnMainSync(Runnable runner) {
+    /**
+     * Check maximum concurrent encoding / decoding resolution allowed.
+     * Some H/Ws cannot support maximum resolution reported in encoder if decoder is running
+     * at the same time.
+     * Check is done for 4 different levels: 1080p, 720p, 800x480 and max of encoder if is is
+     * smaller than 800x480.
+     */
+    private Pair<Integer, Integer> checkMaxConcurrentEncodingDecodingResolution() {
+        CodecInfo codecInfo = getAvcSupportedFormatInfo();
+        int maxW = codecInfo.mMaxW;
+        int maxH = codecInfo.mMaxH;
+        if (maxW >= 1920 && maxH >= 1080) {
+            if (isConcurrentEncodingDecodingSupported(1920, 1080, BITRATE_1080p)) {
+                return new Pair<Integer, Integer>(1920, 1080);
+            }
+        }
+        if (maxW >= 1280 && maxH >= 720) {
+            if (isConcurrentEncodingDecodingSupported(1280, 720, BITRATE_720p)) {
+                return new Pair<Integer, Integer>(1280, 720);
+            }
+        }
+        if (maxW >= 800 && maxH >= 480) {
+            if (isConcurrentEncodingDecodingSupported(800, 480, BITRATE_800x480)) {
+                return new Pair<Integer, Integer>(800, 480);
+            }
+        }
+        if (!isConcurrentEncodingDecodingSupported(codecInfo.mMaxW, codecInfo.mMaxH,
+                codecInfo.mBitRate)) {
+            fail("should work with advertised resolution");
+        }
+        return new Pair<Integer, Integer>(maxW, maxH);
+    }
+
+    private boolean isConcurrentEncodingDecodingSupported(int w, int h, int bitRate) {
+        MediaCodec decoder = null;
+        OutputSurface decodingSurface = null;
+        MediaCodec encoder = null;
+        Surface encodingSurface = null;
+        try {
+            decoder = MediaCodec.createDecoderByType(MIME_TYPE);
+            MediaFormat decoderFormat = MediaFormat.createVideoFormat(MIME_TYPE, w, h);
+            decodingSurface = new OutputSurface(w, h);
+            decodingSurface.makeCurrent();
+            decoder.configure(decoderFormat, decodingSurface.getSurface(), null, 0);
+            decoder.start();
+
+            MediaFormat format = MediaFormat.createVideoFormat(MIME_TYPE, w, h);
+            format.setInteger(MediaFormat.KEY_COLOR_FORMAT,
+                    MediaCodecInfo.CodecCapabilities.COLOR_FormatSurface);
+            format.setInteger(MediaFormat.KEY_BIT_RATE, bitRate);
+            format.setInteger(MediaFormat.KEY_FRAME_RATE, 30);
+            format.setInteger(MediaFormat.KEY_I_FRAME_INTERVAL, IFRAME_INTERVAL);
+            encoder = MediaCodec.createEncoderByType(MIME_TYPE);;
+            encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE);
+            encodingSurface = encoder.createInputSurface();
+            encoder.start();
+
+            encoder.stop();
+            decoder.stop();
+        } catch (Exception e) {
+            e.printStackTrace();
+            Log.i(TAG, "This H/W does not support w:" + w + " h:" + h);
+            return false;
+        } finally {
+            if (encodingSurface != null) {
+                encodingSurface.release();
+            }
+            if (encoder != null) {
+                encoder.release();
+            }
+            if (decoder != null) {
+                decoder.release();
+            }
+            if (decodingSurface != null) {
+                decodingSurface.release();
+            }
+        }
+        return true;
+    }
+
+    private static void runOnMain(Runnable runner) {
+        sHandlerForRunOnMain.post(runner);
+    }
+
+    private static void runOnMainSync(Runnable runner) {
         SyncRunnable sr = new SyncRunnable(runner);
-        mHandler.post(sr);
+        sHandlerForRunOnMain.post(sr);
         sr.waitForComplete();
     }
 
@@ -939,6 +1509,7 @@
                     try {
                         wait();
                     } catch (InterruptedException e) {
+                        //ignore
                     }
                 }
             }
diff --git a/tests/tests/media/src/android/media/cts/MediaCodecCapabilitiesTest.java b/tests/tests/media/src/android/media/cts/MediaCodecCapabilitiesTest.java
index 4f8fb62..b75a635 100644
--- a/tests/tests/media/src/android/media/cts/MediaCodecCapabilitiesTest.java
+++ b/tests/tests/media/src/android/media/cts/MediaCodecCapabilitiesTest.java
@@ -21,6 +21,8 @@
 import android.media.MediaCodecList;
 import android.media.MediaPlayer;
 
+import android.os.Build;
+
 import android.util.Log;
 
 /**
@@ -93,12 +95,16 @@
             Log.i(TAG, "AvcHigh40 not supported");
             return;
         }
+        if (Build.VERSION.SDK_INT < 18) {
+            Log.i(TAG, "fragmented mp4 not supported");
+            return;
+        }
         playVideoWithRetries("http://redirector.c.youtube.com/videoplayback?id=271de9756065677e"
-                + "&itag=37&source=youtube&user=android-device-test"
+                + "&itag=137&source=youtube&user=android-device-test"
                 + "&sparams=ip,ipbits,expire,id,itag,source,user"
                 + "&ip=0.0.0.0&ipbits=0&expire=999999999999999999"
-                + "&signature=7C3BBFB2F493E1BC396B6D31DDAF2E1367624487."
-                + "64197F3BB46039669E912297DCD68D1FB2811D9F"
+                + "&signature=2C836E04C4DDC98649CD44C8B91813D98342D1D1."
+                + "870A848D54CA08C197E5FDC34ED45E6ED7DB5CDA"
                 + "&key=test_key1", 1920, 1080, PLAY_TIME_MS);
     }
 
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/OutputSurface.java b/tests/tests/media/src/android/media/cts/OutputSurface.java
index fd36d80..fc8ad9c 100644
--- a/tests/tests/media/src/android/media/cts/OutputSurface.java
+++ b/tests/tests/media/src/android/media/cts/OutputSurface.java
@@ -250,6 +250,35 @@
     }
 
     /**
+     * Wait up to given timeout until new image become available.
+     * @param timeoutMs
+     * @return true if new image is available. false for no new image until timeout.
+     */
+    public boolean checkForNewImage(int timeoutMs) {
+        synchronized (mFrameSyncObject) {
+            while (!mFrameAvailable) {
+                try {
+                    // Wait for onFrameAvailable() to signal us.  Use a timeout to avoid
+                    // stalling the test if it doesn't arrive.
+                    mFrameSyncObject.wait(timeoutMs);
+                    if (!mFrameAvailable) {
+                        return false;
+                    }
+                } catch (InterruptedException ie) {
+                    // shouldn't happen
+                    throw new RuntimeException(ie);
+                }
+            }
+            mFrameAvailable = false;
+        }
+
+        // Latch the data.
+        mTextureRender.checkGlError("before updateTexImage");
+        mSurfaceTexture.updateTexImage();
+        return true;
+    }
+
+    /**
      * Draws the data from SurfaceTexture onto the current EGL surface.
      */
     public void drawImage() {
diff --git a/tests/tests/media/src/android/media/cts/RemoteVirtualDisplayService.java b/tests/tests/media/src/android/media/cts/RemoteVirtualDisplayService.java
new file mode 100644
index 0000000..662cd5b
--- /dev/null
+++ b/tests/tests/media/src/android/media/cts/RemoteVirtualDisplayService.java
@@ -0,0 +1,226 @@
+/*
+ * 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.media.cts;
+
+import android.app.Presentation;
+import android.app.Service;
+import android.content.Context;
+import android.content.Intent;
+import android.graphics.drawable.ColorDrawable;
+import android.hardware.display.DisplayManager;
+import android.hardware.display.VirtualDisplay;
+import android.os.Binder;
+import android.os.Bundle;
+import android.os.Handler;
+import android.os.IBinder;
+import android.os.Looper;
+import android.os.Parcel;
+import android.os.RemoteException;
+import android.util.Log;
+import android.view.Display;
+import android.view.Surface;
+import android.view.ViewGroup.LayoutParams;
+import android.view.WindowManager;
+import android.widget.ImageView;
+
+public class RemoteVirtualDisplayService extends Service {
+    private static final String TAG = "RemoteVirtualDisplayService";
+
+    /** argument: Surface, int w, int h, return none */
+    private static final int BINDER_CMD_START = IBinder.FIRST_CALL_TRANSACTION;
+    /** argument: int color, return none */
+    private static final int BINDER_CMD_RENDER = IBinder.FIRST_CALL_TRANSACTION + 1;
+    private final Handler mHandlerForRunOnMain = new Handler(Looper.getMainLooper());;
+    private IBinder mBinder;
+    private VirtualDisplayPresentation mPresentation;
+
+    @Override
+    public void onCreate() {
+        Log.i(TAG, "onCreate");
+        mBinder = new Binder() {
+            @Override
+            protected boolean onTransact(int code, Parcel data, Parcel reply,
+                    int flags) throws RemoteException {
+                switch(code) {
+                    case BINDER_CMD_START: {
+                        Surface surface = Surface.CREATOR.createFromParcel(data);
+                        int w = data.readInt();
+                        int h = data.readInt();
+                        start(surface, w, h);
+                        break;
+                    }
+                    case BINDER_CMD_RENDER: {
+                        int color = data.readInt();
+                        render(color);
+                        break;
+                    }
+                    default:
+                        Log.e(TAG, "unrecognized binder command " + code);
+                        return false;
+                }
+                return true;
+            }
+        };
+    }
+
+    @Override
+    public IBinder onBind(Intent intent) {
+        Log.i(TAG, "onBind");
+        return mBinder;
+    }
+
+    @Override
+    public void onDestroy() {
+        Log.i(TAG, "onDestroy");
+        if (mPresentation != null) {
+            mPresentation.dismissPresentation();
+            mPresentation.destroyVirtualDisplay();
+            mPresentation = null;
+        }
+    }
+
+    private void start(Surface surface, int w, int h) {
+        Log.i(TAG, "start");
+        mPresentation = new VirtualDisplayPresentation(this, surface, w, h);
+        mPresentation.createVirtualDisplay();
+        mPresentation.createPresentation();
+    }
+
+    private void render(int color) {
+        Log.i(TAG, "render");
+        mPresentation.doRendering(color);
+    }
+
+    private class VirtualDisplayPresentation {
+        private Context mContext;
+        private Surface mSurface;
+        private int mWidth;
+        private int mHeight;
+        private final DisplayManager mDisplayManager;
+        private VirtualDisplay mVirtualDisplay;
+        private TestPresentation mPresentation;
+
+        VirtualDisplayPresentation(Context context, Surface surface, int w, int h) {
+            mContext = context;
+            mSurface = surface;
+            mWidth = w;
+            mHeight = h;
+            mDisplayManager = (DisplayManager)context.getSystemService(Context.DISPLAY_SERVICE);
+        }
+
+        void createVirtualDisplay() {
+            runOnMainSync(new Runnable() {
+                @Override
+                public void run() {
+                    mVirtualDisplay = mDisplayManager.createVirtualDisplay(
+                            TAG, mWidth, mHeight, 200, mSurface, 0);
+                }
+            });
+        }
+
+        void destroyVirtualDisplay() {
+            if (mVirtualDisplay != null) {
+                mVirtualDisplay.release();
+            }
+        }
+
+        void createPresentation() {
+            runOnMainSync(new Runnable() {
+                @Override
+                public void run() {
+                    mPresentation = new TestPresentation(RemoteVirtualDisplayService.this,
+                            mVirtualDisplay.getDisplay());
+                    mPresentation.show();
+                }
+            });
+        }
+
+        void dismissPresentation() {
+            if (mPresentation != null) {
+                mPresentation.dismiss();
+            }
+        }
+
+        public void doRendering(final int color) {
+            runOnMainSync(new Runnable() {
+                @Override
+                public void run() {
+                    mPresentation.doRendering(color);
+                }
+            });
+        }
+
+        private class TestPresentation extends Presentation {
+            private ImageView mImageView;
+
+            public TestPresentation(Context outerContext, Display display) {
+                super(outerContext, display);
+                getWindow().setType(WindowManager.LayoutParams.TYPE_PRIVATE_PRESENTATION);
+                getWindow().addFlags(WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED);
+            }
+
+            @Override
+            protected void onCreate(Bundle savedInstanceState) {
+                super.onCreate(savedInstanceState);
+                mImageView = new ImageView(getContext());
+                mImageView.setImageDrawable(new ColorDrawable(0));
+                mImageView.setLayoutParams(new LayoutParams(
+                        LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
+                setContentView(mImageView);
+            }
+
+            public void doRendering(int color) {
+                mImageView.setImageDrawable(new ColorDrawable(color));
+            }
+        }
+    }
+
+    private void runOnMainSync(Runnable runner) {
+        SyncRunnable sr = new SyncRunnable(runner);
+        mHandlerForRunOnMain.post(sr);
+        sr.waitForComplete();
+    }
+
+    private static final class SyncRunnable implements Runnable {
+        private final Runnable mTarget;
+        private boolean mComplete;
+
+        public SyncRunnable(Runnable target) {
+            mTarget = target;
+        }
+
+        public void run() {
+            mTarget.run();
+            synchronized (this) {
+                mComplete = true;
+                notifyAll();
+            }
+        }
+
+        public void waitForComplete() {
+            synchronized (this) {
+                while (!mComplete) {
+                    try {
+                        wait();
+                    } catch (InterruptedException e) {
+                        //ignore
+                    }
+                }
+            }
+        }
+    }
+}
diff --git a/tests/tests/media/src/android/media/cts/StreamingMediaPlayerTest.java b/tests/tests/media/src/android/media/cts/StreamingMediaPlayerTest.java
index 37259f1..2c1b401 100644
--- a/tests/tests/media/src/android/media/cts/StreamingMediaPlayerTest.java
+++ b/tests/tests/media/src/android/media/cts/StreamingMediaPlayerTest.java
@@ -16,6 +16,7 @@
 package android.media.cts;
 
 import android.media.MediaPlayer;
+import android.util.Log;
 import android.webkit.cts.CtsTestServer;
 
 
@@ -110,10 +111,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
@@ -138,6 +141,9 @@
     public void testPlayOggStreamNoLength() throws Throwable {
         localHttpAudioStreamTest("noiseandchirps.ogg", false, true);
     }
+    public void testPlayMp3Stream1Ssl() throws Throwable {
+        localHttpsAudioStreamTest("ringer.mp3", false, false);
+    }
 
     private void localHttpAudioStreamTest(final String name, boolean redirect, boolean nolength)
             throws Throwable {
@@ -193,6 +199,53 @@
             mServer.shutdown();
         }
     }
+    private void localHttpsAudioStreamTest(final String name, boolean redirect, boolean nolength)
+            throws Throwable {
+        mServer = new CtsTestServer(mContext, true);
+        try {
+            String stream_url = null;
+            if (redirect) {
+                // Stagefright doesn't have a limit, but we can't test support of infinite redirects
+                // Up to 4 redirects seems reasonable though.
+                stream_url = mServer.getRedirectingAssetUrl(name, 4);
+            } else {
+                stream_url = mServer.getAssetUrl(name);
+            }
+            if (nolength) {
+                stream_url = stream_url + "?" + CtsTestServer.NOLENGTH_POSTFIX;
+            }
+
+            mMediaPlayer.setDataSource(stream_url);
+
+            mMediaPlayer.setDisplay(getActivity().getSurfaceHolder());
+            mMediaPlayer.setScreenOnWhilePlaying(true);
+
+            mOnBufferingUpdateCalled.reset();
+            mMediaPlayer.setOnBufferingUpdateListener(new MediaPlayer.OnBufferingUpdateListener() {
+                @Override
+                public void onBufferingUpdate(MediaPlayer mp, int percent) {
+                    mOnBufferingUpdateCalled.signal();
+                }
+            });
+            mMediaPlayer.setOnErrorListener(new MediaPlayer.OnErrorListener() {
+                @Override
+                public boolean onError(MediaPlayer mp, int what, int extra) {
+                    fail("Media player had error " + what + " playing " + name);
+                    return true;
+                }
+            });
+
+            assertFalse(mOnBufferingUpdateCalled.isSignalled());
+            try {
+                mMediaPlayer.prepare();
+            } catch (Exception ex) {
+                return;
+            }
+            fail("https playback should have failed");
+        } finally {
+            mServer.shutdown();
+        }
+    }
 
     public void testPlayHlsStream() throws Throwable {
         localHlsTest("hls.m3u8", false, false);
diff --git a/tests/tests/nativemedia/sl/NativeMediaTest_SL_list.txt b/tests/tests/nativemedia/sl/NativeMediaTest_SL_list.txt
new file mode 100644
index 0000000..c5d17a3
--- /dev/null
+++ b/tests/tests/nativemedia/sl/NativeMediaTest_SL_list.txt
@@ -0,0 +1,11 @@
+SLObjectCreationTest.
+  testEngineCreation
+  testOutputMixCreation
+  testAudioPlayerFromUriCreation
+  testAudioPlayerFromFdCreation
+  testAudioPlayerFromPcmBqCreation
+  testAudioPlayerFromTsAbqCreation
+  testAudioPlayerFromUriToPcmBqCreation
+  testAudioPlayerFromFdToPcmBqCreation
+  testAudioPlayerFromAdtsAbqToPcmBqCreation
+  testAudioRecorderCreation
diff --git a/tests/tests/nativemedia/xa/NativeMediaTest_XA_list.txt b/tests/tests/nativemedia/xa/NativeMediaTest_XA_list.txt
new file mode 100644
index 0000000..af8bfad
--- /dev/null
+++ b/tests/tests/nativemedia/xa/NativeMediaTest_XA_list.txt
@@ -0,0 +1,3 @@
+XAObjectCreationTest.
+  testEngineCreation
+  testOutputMixCreation
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/AndroidManifest.xml b/tests/tests/permission/AndroidManifest.xml
index 1e1465d..945a303 100644
--- a/tests/tests/permission/AndroidManifest.xml
+++ b/tests/tests/permission/AndroidManifest.xml
@@ -18,6 +18,7 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.android.cts.permission">
 
+    <uses-permission android:name="android.permission.INJECT_EVENTS" />
     <application>
         <uses-library android:name="android.test.runner" />
         <activity android:name="android.permission.cts.PermissionStubActivity"
diff --git a/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java b/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java
index 59f0135..354fbaf 100755
--- 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",
@@ -731,21 +733,21 @@
                 new File("/dev/alarm"),      // b/9035217
                 new File("/dev/ashmem"),
                 new File("/dev/binder"),
-                new File("/dev/card0"),       // b/13159510
-                new File("/dev/dri/card0"),   // b/13159510
-                new File("/dev/quadd"),
-                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/quadd"),      // b/11336334
+                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/galcore"),
                 new File("/dev/genlock"),    // b/9035217
                 new File("/dev/graphics/galcore"),
                 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
@@ -755,6 +757,7 @@
                 new File("/dev/mm_interlock"), // b/12955573
                 new File("/dev/mm_isp"),      // b/12955573
                 new File("/dev/mm_v3d"),      // b/12955573
+                new File("/dev/mali"),        // b/11142586
                 new File("/dev/msm_rotator"), // b/9035217
                 new File("/dev/null"),
                 new File("/dev/nvhost-as-gpu"),
@@ -771,15 +774,17 @@
                 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/tegra-throughput"),
                 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/permission/src/android/permission/cts/PackageManagerRequiringPermissionsTest.java b/tests/tests/permission/src/android/permission/cts/PackageManagerRequiringPermissionsTest.java
index 6f4c11a..2bfef62 100644
--- a/tests/tests/permission/src/android/permission/cts/PackageManagerRequiringPermissionsTest.java
+++ b/tests/tests/permission/src/android/permission/cts/PackageManagerRequiringPermissionsTest.java
@@ -27,7 +27,9 @@
  */
 @SmallTest
 public class PackageManagerRequiringPermissionsTest extends AndroidTestCase {
-    private static final String PACKAGE_NAME = "com.android.cts.stub";
+    // Must be a known-present application package other than the one hosting this class
+    private static final String PACKAGE_NAME = "android";
+
     private PackageManager mPackageManager;
 
     @Override
diff --git a/tests/tests/provider/src/android/provider/cts/TelephonyProviderTest.java b/tests/tests/provider/src/android/provider/cts/TelephonyProviderTest.java
index 962e3aa..0eba9f2 100644
--- a/tests/tests/provider/src/android/provider/cts/TelephonyProviderTest.java
+++ b/tests/tests/provider/src/android/provider/cts/TelephonyProviderTest.java
@@ -22,6 +22,8 @@
 import android.net.Uri;
 import android.os.ParcelFileDescriptor;
 import android.provider.Telephony.Carriers;
+import android.net.Uri;
+import android.os.ParcelFileDescriptor;
 import android.test.InstrumentationTestCase;
 
 import java.lang.reflect.Field;
diff --git a/tests/tests/security/Android.mk b/tests/tests/security/Android.mk
index f1a6bfb..cd1d8d0 100644
--- a/tests/tests/security/Android.mk
+++ b/tests/tests/security/Android.mk
@@ -20,11 +20,12 @@
 
 LOCAL_JAVA_LIBRARIES := android.test.runner
 
-LOCAL_STATIC_JAVA_LIBRARIES := ctstestrunner guava
+LOCAL_STATIC_JAVA_LIBRARIES := ctstestrunner guava ctstestserver
 
 LOCAL_JNI_SHARED_LIBRARIES := libctssecurity_jni
 
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
+LOCAL_SRC_FILES := $(call all-java-files-under, src) \
+    src/android/security/cts/activity/ISecureRandomService.aidl
 
 LOCAL_PACKAGE_NAME := CtsSecurityTestCases
 
diff --git a/tests/tests/security/AndroidManifest.xml b/tests/tests/security/AndroidManifest.xml
index 101c01c..0b9baf2 100644
--- a/tests/tests/security/AndroidManifest.xml
+++ b/tests/tests/security/AndroidManifest.xml
@@ -18,6 +18,7 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.android.cts.security">
 
+    <uses-permission android:name="android.permission.INTERNET" />
     <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
     <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
     <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
@@ -29,11 +30,13 @@
                  android:process=":death_test_service"
                  android:isolatedProcess="true"
                  android:exported="true"/>
+        <service android:name="android.security.cts.activity.SecureRandomService"
+                 android:process=":secureRandom"/>
     </application>
 
     <instrumentation android:name="android.test.InstrumentationCtsTestRunner"
-                     android:targetPackage="com.android.cts.stub"
-                     android:label="CTS tests of com.android.cts.stub"/>
+                     android:targetPackage="com.android.cts.security"
+                     android:label="CTS tests of com.android.cts.security"/>
 
 </manifest>
 
diff --git a/tests/tests/security/jni/Android.mk b/tests/tests/security/jni/Android.mk
index b2412a1..94fd02d 100644
--- a/tests/tests/security/jni/Android.mk
+++ b/tests/tests/security/jni/Android.mk
@@ -24,6 +24,7 @@
 LOCAL_SRC_FILES := \
 		CtsSecurityJniOnLoad.cpp \
 		android_security_cts_CharDeviceTest.cpp \
+		android_security_cts_KernelSettingsTest.cpp \
 		android_security_cts_LinuxRngTest.cpp \
 		android_security_cts_LoadEffectLibraryTest.cpp \
 		android_security_cts_NativeCodeTest.cpp \
diff --git a/tests/tests/security/jni/CtsSecurityJniOnLoad.cpp b/tests/tests/security/jni/CtsSecurityJniOnLoad.cpp
index 323caaf..9d00ad6 100644
--- a/tests/tests/security/jni/CtsSecurityJniOnLoad.cpp
+++ b/tests/tests/security/jni/CtsSecurityJniOnLoad.cpp
@@ -17,6 +17,7 @@
 #include <jni.h>
 #include <stdio.h>
 
+extern int register_android_security_cts_KernelSettingsTest(JNIEnv*);
 extern int register_android_security_cts_CharDeviceTest(JNIEnv*);
 extern int register_android_security_cts_LinuxRngTest(JNIEnv*);
 extern int register_android_security_cts_NativeCodeTest(JNIEnv*);
@@ -55,5 +56,9 @@
         return JNI_ERR;
     }
 
+    if (register_android_security_cts_KernelSettingsTest(env)) {
+        return JNI_ERR;
+    }
+
     return JNI_VERSION_1_4;
 }
diff --git a/tests/tests/security/jni/android_security_cts_KernelSettingsTest.cpp b/tests/tests/security/jni/android_security_cts_KernelSettingsTest.cpp
new file mode 100644
index 0000000..bab7b57
--- /dev/null
+++ b/tests/tests/security/jni/android_security_cts_KernelSettingsTest.cpp
@@ -0,0 +1,39 @@
+/*
+ * 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.
+ */
+
+#include <jni.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include <sys/xattr.h>
+#include <errno.h>
+
+static jboolean android_security_cts_KernelSettingsTest_supportsXattr(JNIEnv* env, jobject thiz)
+{
+    int result = getxattr("/system/bin/toolbox", "security.capability", NULL, 0);
+    return ((result >= 0) || (errno == ENODATA));
+}
+
+static JNINativeMethod gMethods[] = {
+    {  "supportsXattr", "()Z",
+            (void *) android_security_cts_KernelSettingsTest_supportsXattr },
+};
+
+int register_android_security_cts_KernelSettingsTest(JNIEnv* env)
+{
+    jclass clazz = env->FindClass("android/security/cts/KernelSettingsTest");
+    return env->RegisterNatives(clazz, gMethods,
+            sizeof(gMethods) / sizeof(JNINativeMethod));
+}
diff --git a/tests/tests/security/jni/android_security_cts_NativeCodeTest.cpp b/tests/tests/security/jni/android_security_cts_NativeCodeTest.cpp
index acb3012..203382f 100644
--- a/tests/tests/security/jni/android_security_cts_NativeCodeTest.cpp
+++ b/tests/tests/security/jni/android_security_cts_NativeCodeTest.cpp
@@ -23,6 +23,9 @@
 #include <sys/wait.h>
 #include <signal.h>
 #include <stdlib.h>
+#include <sys/mman.h>
+#include <sys/stat.h>
+#include <fcntl.h>
 #include <cutils/log.h>
 #include <linux/perf_event.h>
 
@@ -163,6 +166,54 @@
     return parent(pid);
 }
 
+static void* mmap_syscall(void* addr, size_t len, int prot, int flags, int fd, off_t offset)
+{
+    return (void*) syscall(__NR_mmap2, addr, len, prot, flags, fd, offset);
+}
+
+#define KBASE_REG_COOKIE_TB         2
+#define KBASE_REG_COOKIE_MTP        3
+
+/*
+ * Returns true if the device is immune to CVE-2014-1710,
+ * false if the device is vulnerable.
+ */
+static jboolean android_security_cts_NativeCodeTest_doCVE20141710Test(JNIEnv*, jobject)
+{
+    jboolean result = false;
+    int fd = open("/dev/mali0", O_RDWR);
+    if (fd < 0) {
+        return true; /* not vulnerable */
+    }
+
+    void* a = mmap_syscall(NULL, 0x1000, PROT_READ, MAP_SHARED, fd, KBASE_REG_COOKIE_MTP);
+    void* b = mmap_syscall(NULL, 0x1000, PROT_READ, MAP_SHARED, fd, KBASE_REG_COOKIE_TB);
+
+    if (a == MAP_FAILED) {
+        result = true; /* assume not vulnerable */
+        goto done;
+    }
+
+    if (b == MAP_FAILED) {
+        result = true; /* assume not vulnerable */
+        goto done;
+    }
+
+    /* mprotect should return an error if not vulnerable */
+    result = (mprotect(b, 0x1000, PROT_READ | PROT_WRITE) == -1);
+
+ done:
+    if (a != MAP_FAILED) {
+        munmap(a, 0x1000);
+    }
+    if (b != MAP_FAILED) {
+        munmap(b, 0x1000);
+    }
+    close(fd);
+    return result;
+}
+
+
 static JNINativeMethod gMethods[] = {
     {  "doPerfEventTest", "()Z",
             (void *) android_security_cts_NativeCodeTest_doPerfEventTest },
@@ -170,6 +221,8 @@
             (void *) android_security_cts_NativeCodeTest_doPerfEventTest2 },
     {  "doVrootTest", "()Z",
             (void *) android_security_cts_NativeCodeTest_doVrootTest },
+    {  "doCVE20141710Test", "()Z",
+            (void *) android_security_cts_NativeCodeTest_doCVE20141710Test },
 };
 
 int register_android_security_cts_NativeCodeTest(JNIEnv* env)
diff --git a/tests/tests/security/src/android/security/cts/CertificateData.java b/tests/tests/security/src/android/security/cts/CertificateData.java
index 350d3db..8a4d603 100644
--- a/tests/tests/security/src/android/security/cts/CertificateData.java
+++ b/tests/tests/security/src/android/security/cts/CertificateData.java
@@ -26,25 +26,25 @@
 class CertificateData {
   static final String[] CERTIFICATE_DATA = {
       "91:C6:D6:EE:3E:8A:C8:63:84:E5:48:C2:99:29:5C:75:6C:81:7B:81",
-      "A4:34:89:15:9A:52:0F:0D:93:D0:32:CC:AF:37:E7:FE:20:A8:B4:19",
+      "4A:65:D5:F4:1D:EF:39:B8:B8:90:4A:4A:D3:64:81:33:CF:C7:A1:D1",
+      "4D:23:78:EC:91:95:39:B5:00:7F:75:8F:03:3B:21:1E:C5:4D:8B:CF",
       "E7:B4:F6:9D:61:EC:90:69:DB:7E:90:A7:40:1A:3C:F4:7D:4F:E8:EE",
       "DD:E1:D2:A9:01:80:2E:1D:87:5E:84:B3:80:7E:4B:B1:FD:99:41:34",
       "92:5A:8F:8D:2C:6D:04:E0:66:5F:59:6A:FF:22:D8:63:E8:25:6F:3F",
       "75:E0:AB:B6:13:85:12:27:1C:04:F8:5F:DD:DE:38:E4:B7:24:2E:FE",
-      "A9:62:8F:4B:98:A9:1B:48:35:BA:D2:C1:46:32:86:BB:66:64:6A:8C",
       "40:9D:4B:D9:17:B5:5C:27:B6:9B:64:CB:98:22:44:0D:CD:09:B8:89",
-      "87:81:C2:5A:96:BD:C2:FB:4C:65:06:4F:F9:39:0B:26:04:8A:0E:01",
+      "E1:9F:E3:0E:8B:84:60:9E:80:9B:17:0D:72:A8:C5:BA:6E:14:09:BD",
       "DA:C9:02:4F:54:D8:F6:DF:94:93:5F:B1:73:26:38:CA:6A:D7:7C:13",
+      "4F:99:AA:93:FB:2B:D1:37:26:A1:99:4A:CE:7F:F0:05:F2:93:5D:1E",
       "74:20:74:41:72:9C:DD:92:EC:79:31:D8:23:10:8D:C2:81:92:E2:BB",
-      "3C:71:D7:0E:35:A5:DA:A8:B2:E3:81:2D:C3:67:74:17:F5:99:0D:F3",
       "40:54:DA:6F:1C:3F:40:74:AC:ED:0F:EC:CD:DB:79:D1:53:FB:90:1D",
       "43:F9:B1:10:D5:BA:FD:48:22:52:31:B0:D0:08:2B:37:2F:EF:9A:54",
       "F4:8B:11:BF:DE:AB:BE:94:54:20:71:E6:41:DE:6B:BE:88:2B:40:B9",
       "58:E8:AB:B0:36:15:33:FB:80:F7:9B:1B:6D:29:D3:FF:8D:5F:00:F0",
-      "96:56:CD:7B:57:96:98:95:D0:E1:41:46:68:06:FB:B8:C6:11:06:87",
       "55:A6:72:3E:CB:F2:EC:CD:C3:23:74:70:19:9D:2A:BE:11:E3:81:D1",
       "D6:9B:56:11:48:F0:1C:77:C5:45:78:C1:09:26:DF:5B:85:69:76:AD",
       "78:6A:74:AC:76:AB:14:7F:9C:6A:30:50:BA:9E:A8:7E:FE:9A:CE:3C",
+      "8E:1C:74:F8:A6:20:B9:E5:8A:F4:61:FA:EC:2B:47:56:51:1A:52:C6",
       "27:96:BA:E6:3F:18:01:E2:77:26:1B:A0:D7:77:70:02:8F:20:EE:E4",
       "AD:7E:1C:28:B0:64:EF:8F:60:03:40:20:14:C3:D0:E3:37:0E:B5:8A",
       "8D:17:84:D5:37:F3:03:7D:EC:70:FE:57:8B:51:9A:99:E6:10:D7:B0",
@@ -54,6 +54,7 @@
       "74:F8:A3:C3:EF:E7:B3:90:06:4B:83:90:3C:21:64:60:20:E5:DF:CE",
       "85:B5:FF:67:9B:0C:79:96:1F:C8:6E:44:22:00:46:13:DB:17:92:84",
       "3E:2B:F7:F2:03:1B:96:F3:8C:E6:C4:D8:A8:5D:3E:2D:58:47:6A:0F",
+      "A3:F1:33:3F:E2:42:BF:CF:C5:D1:4E:8F:39:42:98:40:68:10:D1:A0",
       "5F:43:E5:B1:BF:F8:78:8C:AC:1C:C7:CA:4A:9A:C6:22:2B:CC:34:C6",
       "A8:98:5D:3A:65:E5:E5:C4:B2:D7:D6:6D:40:C6:DD:2F:B1:9C:54:36",
       "59:22:A1:E1:5A:EA:16:35:21:F8:98:39:6A:46:46:B0:44:1B:0F:A9",
@@ -67,7 +68,6 @@
       "1B:4B:39:61:26:27:6B:64:91:A2:68:6D:D7:02:43:21:2D:1F:1D:96",
       "77:47:4F:C6:30:E4:0F:4C:47:64:3F:84:BA:B8:C6:95:4A:8A:41:EC",
       "8C:F4:27:FD:79:0C:3A:D1:66:06:8D:E8:1E:57:EF:BB:93:22:72:D4",
-      "56:E0:FA:C0:3B:8F:18:23:55:18:E5:D3:11:CA:E8:C2:43:31:AB:66",
       "02:72:68:29:3E:5F:5D:17:AA:A4:B3:C3:E6:36:1E:1F:92:57:5E:AA",
       "2F:78:3D:25:52:18:A7:4A:65:39:71:B5:2C:A2:9C:45:15:6F:E9:19",
       "97:81:79:50:D8:1C:96:70:CC:34:D8:09:CF:79:44:31:36:7E:F4:74",
@@ -84,8 +84,10 @@
       "87:9F:4B:EE:05:DF:98:58:3B:E3:60:D6:33:E7:0D:3F:FE:98:71:AF",
       "DE:3F:40:BD:50:93:D3:9B:6C:60:F6:DA:BC:07:62:01:00:89:76:C9",
       "22:D5:D8:DF:8F:02:31:D1:8D:F7:9D:B7:CF:8A:2D:64:C9:3F:6C:3A",
+      "F3:73:B3:87:06:5A:28:84:8A:F2:F3:4A:CE:19:2B:DD:C7:8E:9C:AC",
       "06:08:3F:59:3F:15:A1:04:A0:69:A4:6B:A9:03:D0:06:B7:97:09:91",
       "E3:92:51:2F:0A:CF:F5:05:DF:F6:DE:06:7F:75:37:E1:65:EA:57:4B",
+      "43:13:BB:96:F1:D5:86:9B:C1:4E:6A:92:F6:CF:F6:34:69:87:82:37",
       "F1:8B:53:8D:1B:E9:03:B6:A6:F0:56:43:5B:17:15:89:CA:F3:6B:F2",
       "05:63:B8:63:0D:62:D7:5A:BB:C8:AB:1E:4B:DF:B5:A8:99:B2:4D:43",
       "93:E6:AB:22:03:03:B5:23:28:DC:DA:56:9E:BA:E4:D1:D1:CC:FB:65",
@@ -113,36 +115,41 @@
       "FA:B7:EE:36:97:26:62:FB:2D:B0:2A:F6:BF:03:FD:E8:7C:4B:2F:9B",
       "8B:AF:4C:9B:1D:F0:2A:92:F7:DA:12:8E:B9:1B:AC:F4:98:60:4B:6F",
       "9F:74:4E:9F:2B:4D:BA:EC:0F:31:2C:50:B6:56:3B:8E:2D:93:C3:11",
-      "39:4F:F6:85:0B:06:BE:52:E5:18:56:CC:10:E1:80:E8:82:B3:85:CC",
+      "C9:A8:B9:E7:55:80:5E:58:E3:53:77:A7:25:EB:AF:C3:7B:27:CC:D7",
       "1F:49:14:F7:D8:74:95:1D:DD:AE:02:C0:BE:FD:3A:2D:82:75:51:85",
+      "B5:61:EB:EA:A4:DE:E4:25:4B:69:1A:98:A5:57:47:C2:34:C7:D9:71",
       "07:E0:32:E0:20:B7:2C:3F:19:2F:06:28:A2:59:3A:19:A7:0F:06:9E",
       "D6:DA:A8:20:8D:09:D2:15:4D:24:B5:2F:CB:34:6E:B2:58:B2:8A:58",
       "32:3C:11:8E:1B:F7:B8:B6:52:54:E2:E2:10:0D:D6:02:90:37:F0:96",
+      "E7:A1:90:29:D3:D5:52:DC:0D:0F:C6:92:D3:EA:88:0D:15:2E:1A:6B",
       "67:65:0D:F1:7E:8E:7E:5B:82:40:A4:F4:56:4B:CF:E2:3D:69:C6:F0",
       "FE:B8:C4:32:DC:F9:76:9A:CE:AE:3D:D8:90:8F:FD:28:86:65:64:7D",
       "4A:BD:EE:EC:95:0D:35:9C:89:AE:C7:52:A1:2C:5B:29:F6:D6:AA:0C",
       "33:9B:6B:14:50:24:9B:55:7A:01:87:72:84:D9:E0:2F:C3:D2:D8:E9",
-      "AB:48:F3:33:DB:04:AB:B9:C0:72:DA:5B:0C:C1:D0:57:F0:36:9B:46",
+      "2A:B6:28:48:5E:78:FB:F3:AD:9E:79:10:DD:6B:DF:99:72:2C:96:E5",
       "36:B1:2B:49:F9:81:9E:D7:4C:9E:BC:38:0F:C6:56:8F:5D:AC:B2:F7",
       "37:F7:6D:E6:07:7C:90:C5:B1:3E:93:1A:B7:41:10:B4:F2:E4:9A:27",
       "AA:DB:BC:22:23:8F:C4:01:A1:27:BB:38:DD:F4:1D:DB:08:9E:F0:12",
       "3B:C4:9F:48:F8:F3:73:A0:9C:1E:BD:F8:5B:B1:C3:65:C7:D8:11:B3",
       "AC:ED:5F:65:53:FD:25:CE:01:5F:1F:7A:48:3B:6A:74:9F:61:78:C6",
       "28:90:3A:63:5B:52:80:FA:E6:77:4C:0B:6D:A7:D6:BA:A6:4A:F2:E8",
+      "9C:BB:48:53:F6:A4:F6:D3:52:A4:E8:32:52:55:60:13:F5:AD:AF:65",
       "B1:BC:96:8B:D4:F4:9D:62:2A:A8:9A:81:F2:15:01:52:A4:1D:82:9C",
       "20:D8:06:40:DF:9B:25:F5:12:25:3A:11:EA:F7:59:8A:EB:14:B5:47",
       "CF:9E:87:6D:D3:EB:FC:42:26:97:A3:B5:A3:7A:A0:76:A9:06:23:48",
+      "2B:B1:F5:3E:55:0C:1D:C5:F1:D4:E6:B7:6A:46:4B:55:06:02:AC:21",
       "47:BE:AB:C9:22:EA:E8:0E:78:78:34:62:A7:9F:45:C2:54:FD:E6:8B",
       "31:7A:2A:D0:7F:2B:33:5E:F5:A1:C3:4E:4B:57:E8:B7:D8:F1:FC:A6",
       "39:21:C1:15:C1:5D:0E:CA:5C:CB:5B:C4:F0:7D:21:D8:05:0B:56:6A",
       "3A:44:73:5A:E5:81:90:1F:24:86:61:46:1E:3B:9C:C4:5F:F5:3A:1B",
       "B3:1E:B1:B7:40:E3:6C:84:02:DA:DC:37:D4:4D:F5:D4:67:49:52:F9",
-      "81:96:8B:3A:EF:1C:DC:70:F5:FA:32:69:C2:92:A3:63:5B:D1:23:D3",
       "E0:AB:05:94:20:72:54:93:05:60:62:02:36:70:F7:CD:2E:FC:66:66",
       "D3:C0:63:F2:19:ED:07:3E:34:AD:5D:75:0B:32:76:29:FF:D5:9A:F2",
+      "3B:C0:38:0B:33:C3:F6:A6:0C:86:15:22:93:D9:DF:F5:4B:81:C0:04",
       "C8:EC:8C:87:92:69:CB:4B:AB:39:E9:8D:7E:57:67:F3:14:95:73:9D",
       "03:9E:ED:B8:0B:E7:A0:3C:69:53:89:3B:20:D2:D9:32:3A:4C:2A:FD",
       "CB:A1:C5:F8:B0:E3:5E:B8:B9:45:12:D3:F9:34:A2:E9:06:10:D3:36",
+      "51:C6:E7:08:49:06:6E:F3:92:D4:5C:A0:0D:6D:A3:62:8F:C3:52:39",
       "B8:23:6B:00:2F:1D:16:86:53:01:55:6C:11:A4:37:CA:EB:FF:C3:BB",
       "10:1D:FA:3F:D5:0B:CB:BB:9B:B5:60:0C:19:55:A4:1A:F4:73:3A:04",
       "87:82:C6:C3:04:35:3B:CF:D2:96:92:D2:59:3E:7D:44:D9:34:FF:11",
@@ -150,11 +157,11 @@
       "21:FC:BD:8E:7F:6C:AF:05:1B:D1:B3:43:EC:A8:E7:61:47:F2:0F:8A",
       "5F:3B:8C:F2:F8:10:B3:7D:78:B4:CE:EC:19:19:C3:73:34:B9:C7:74",
       "2A:C8:D5:8B:57:CE:BF:2F:49:AF:F2:FC:76:8F:51:14:62:90:7A:41",
+      "F1:7F:6F:B6:31:DC:99:E3:A3:C8:7F:FE:1C:F1:81:10:88:D9:60:33",
       "96:C9:1B:0B:95:B4:10:98:42:FA:D0:D8:22:79:FE:60:FA:B9:16:83",
-      "CA:BB:51:67:24:00:58:8E:64:19:F1:D4:08:78:D0:40:3A:A2:02:64",
-      "5D:98:9C:DB:15:96:11:36:51:65:64:1B:56:0F:DB:EA:2A:C2:3E:F1",
       "D8:A6:33:2C:E0:03:6F:B1:85:F6:63:4F:7D:6A:06:65:26:32:28:27",
       "9F:AD:91:A6:CE:6A:C6:C5:00:47:C4:4E:C9:D4:A5:0D:92:D8:49:79",
+      "CC:AB:0E:A0:4C:23:01:D6:69:7B:DD:37:9F:CD:12:EB:24:E3:94:9D",
       "F9:B5:B6:32:45:5F:9C:BE:EC:57:5F:80:DC:E9:6E:2C:C7:B2:78:B7",
       "5F:3A:FC:0A:8B:64:F6:86:67:34:74:DF:7E:A9:A2:FE:F9:FA:7A:51",
       "E6:21:F3:35:43:79:05:9A:4B:68:30:9D:8A:2F:74:22:15:87:EC:79",
@@ -162,7 +169,6 @@
       "89:DF:74:FE:5C:F4:0F:4A:80:F9:E3:37:7D:54:DA:91:E1:01:31:8E",
       "E0:B4:32:2E:B2:F6:A5:68:B6:54:53:84:48:18:4A:50:36:87:43:84",
       "61:57:3A:11:DF:0E:D8:7E:D5:92:65:22:EA:D0:56:D7:44:B3:23:71",
-      "0B:77:BE:BB:CB:7A:A2:47:05:DE:CC:0F:BD:6A:02:FC:7A:BD:9B:52",
       "99:A6:9B:E6:1A:FE:88:6B:4D:2B:82:00:7C:B8:54:FC:31:7E:15:39",
       "6E:3A:55:A4:19:0C:19:5C:93:84:3C:C0:DB:72:2E:31:30:61:F0:B1",
       "31:F1:FD:68:22:63:20:EE:C6:3B:3F:9D:EA:4A:3E:53:7C:7C:39:17",
diff --git a/tests/tests/security/src/android/security/cts/IntentSenderRemovalTest.java b/tests/tests/security/src/android/security/cts/IntentSenderRemovalTest.java
new file mode 100644
index 0000000..755cf3e
--- /dev/null
+++ b/tests/tests/security/src/android/security/cts/IntentSenderRemovalTest.java
@@ -0,0 +1,45 @@
+/*
+ * 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.security.cts;
+
+import android.content.Context;
+import android.content.Intent;
+import android.content.pm.PackageManager;
+import android.content.pm.ResolveInfo;
+import android.test.AndroidTestCase;
+
+/**
+ * Make sure the DebugIntentSender activity, which allows privilege escalation of intent caller
+ * to system uid, has been removed from the system.
+ */
+public class IntentSenderRemovalTest extends AndroidTestCase {
+
+    /**
+     * Verify that the DebugIntentSender activity in Settings has been removed
+     * and cannot be invoked.
+     */
+    public void testIntentSenderIntent() throws InterruptedException {
+        Intent debugIntentSender = new Intent(Intent.ACTION_MAIN);
+        debugIntentSender.setClassName("com.android.settings",
+                "com.android.settings.DebugIntentSender");
+        PackageManager pm = getContext().getPackageManager();
+        ResolveInfo ri = pm.resolveActivity(debugIntentSender, 0);
+        // Test for null
+        assertNull("com.android.settings.DebugIntentSender should not be a valid activity", ri);
+    }
+}
+
diff --git a/tests/tests/security/src/android/security/cts/KernelSettingsTest.java b/tests/tests/security/src/android/security/cts/KernelSettingsTest.java
index 51be6be..fc76027 100644
--- a/tests/tests/security/src/android/security/cts/KernelSettingsTest.java
+++ b/tests/tests/security/src/android/security/cts/KernelSettingsTest.java
@@ -30,6 +30,10 @@
  */
 public class KernelSettingsTest extends TestCase {
 
+    static {
+        System.loadLibrary("ctssecurity_jni");
+    }
+
     /**
      * Ensure that SELinux is in enforcing mode.
      */
@@ -111,6 +115,23 @@
                 new File("/proc/config.gz").exists());
     }
 
+    /**
+     * Verify that ext4 extended attributes (xattrs) are enabled in the
+     * Linux kernel.
+     *
+     * To fix this failure, you need to enable the following kernel options:
+     * - CONFIG_EXT4_FS_XATTR
+     * - CONFIG_EXT4_FS_SECURITY
+     *
+     * Failure to enable this option may result in upgrade problems when
+     * trying to upgrade to Android 4.4.
+     */
+    public void testXattrInKernel() {
+        assertTrue(supportsXattr());
+    }
+
+    private static native boolean supportsXattr();
+
     private String getFile(String filename) throws IOException {
         BufferedReader in = null;
         try {
diff --git a/tests/tests/security/src/android/security/cts/NativeCodeTest.java b/tests/tests/security/src/android/security/cts/NativeCodeTest.java
index 4781da3..a9fd821 100644
--- a/tests/tests/security/src/android/security/cts/NativeCodeTest.java
+++ b/tests/tests/security/src/android/security/cts/NativeCodeTest.java
@@ -74,4 +74,14 @@
      * https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/arch/arm/include/asm/uaccess.h?id=8404663f81d212918ff85f493649a7991209fa04
      */
     private static native boolean doVrootTest();
+
+    public void testCVE20141710() throws Exception {
+        assertTrue("Device is vulnerable to CVE-2014-1710", doCVE20141710Test());
+    }
+
+    /**
+     * Returns true if the device is immune to CVE-2014-1710,
+     * false if the device is vulnerable.
+     */
+    private static native boolean doCVE20141710Test();
 }
diff --git a/tests/tests/security/src/android/security/cts/activity/ISecureRandomService.aidl b/tests/tests/security/src/android/security/cts/activity/ISecureRandomService.aidl
new file mode 100644
index 0000000..af264c9
--- /dev/null
+++ b/tests/tests/security/src/android/security/cts/activity/ISecureRandomService.aidl
@@ -0,0 +1,21 @@
+/*
+ * Copyright 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.security.cts.activity;
+
+interface ISecureRandomService {
+    int getRandomBytesAndPid(inout byte[] randomBytes);
+}
diff --git a/tests/tests/security/src/android/security/cts/activity/SecureRandomService.java b/tests/tests/security/src/android/security/cts/activity/SecureRandomService.java
new file mode 100644
index 0000000..2d425b3
--- /dev/null
+++ b/tests/tests/security/src/android/security/cts/activity/SecureRandomService.java
@@ -0,0 +1,61 @@
+/*
+ * Copyright 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.security.cts.activity;
+
+import android.os.Handler;
+import android.os.IBinder;
+import android.os.Message;
+import android.security.cts.activity.ISecureRandomService;
+
+import android.app.Service;
+import android.content.Intent;
+
+import java.security.SecureRandom;
+
+public class SecureRandomService extends Service {
+    /**
+     * This helps the process shut down a little faster and get us a new
+     * PID earlier than calling stopService.
+     */
+    private Handler mShutdownHandler = new Handler() {
+        @Override
+        public void handleMessage(Message msg) {
+            stopSelf();
+        }
+    };
+
+    private final ISecureRandomService.Stub mBinder = new ISecureRandomService.Stub() {
+
+        /**
+         * Returns output from SecureRandom and the current process PID. Note
+         * that this should only be called once. To ensure that it's only called
+         * once, this will throw an error if it's called twice in a row.
+         */
+        public int getRandomBytesAndPid(byte[] randomBytes) {
+            mShutdownHandler.sendEmptyMessage(-1);
+
+            SecureRandom sr = new SecureRandom();
+            sr.nextBytes(randomBytes);
+            return android.os.Process.myPid();
+        }
+    };
+
+    @Override
+    public IBinder onBind(Intent intent) {
+        return mBinder;
+    }
+}
diff --git a/tests/tests/view/src/android/view/cts/ViewTest.java b/tests/tests/view/src/android/view/cts/ViewTest.java
index 2fd939c..95a365f 100644
--- a/tests/tests/view/src/android/view/cts/ViewTest.java
+++ b/tests/tests/view/src/android/view/cts/ViewTest.java
@@ -48,11 +48,13 @@
 import android.view.ContextMenu.ContextMenuInfo;
 import android.view.Display;
 import android.view.HapticFeedbackConstants;
+import android.view.InputDevice;
 import android.view.KeyEvent;
 import android.view.MotionEvent;
 import android.view.SoundEffectConstants;
 import android.view.TouchDelegate;
 import android.view.View;
+import android.view.MotionEvent.PointerProperties;
 import android.view.View.BaseSavedState;
 import android.view.View.OnClickListener;
 import android.view.View.OnCreateContextMenuListener;
@@ -3285,6 +3287,57 @@
         });
     }
 
+    public void testFilterTouchesWhenObscured() throws Throwable {
+        OnTouchListenerImpl touchListener = new OnTouchListenerImpl();
+        View view = new View(mActivity);
+        view.setOnTouchListener(touchListener);
+
+        MotionEvent.PointerProperties[] props = new MotionEvent.PointerProperties[] {
+                new MotionEvent.PointerProperties()
+        };
+        MotionEvent.PointerCoords[] coords = new MotionEvent.PointerCoords[] {
+                new MotionEvent.PointerCoords()
+        };
+        MotionEvent obscuredTouch = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN,
+                1, props, coords, 0, 0, 0, 0, -1, 0, InputDevice.SOURCE_TOUCHSCREEN,
+                MotionEvent.FLAG_WINDOW_IS_OBSCURED);
+        MotionEvent unobscuredTouch = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN,
+                1, props, coords, 0, 0, 0, 0, -1, 0, InputDevice.SOURCE_TOUCHSCREEN,
+                0);
+
+        // Initially filter touches is false so all touches are dispatched.
+        assertFalse(view.getFilterTouchesWhenObscured());
+
+        view.dispatchTouchEvent(unobscuredTouch);
+        assertTrue(touchListener.hasOnTouch());
+        touchListener.reset();
+        view.dispatchTouchEvent(obscuredTouch);
+        assertTrue(touchListener.hasOnTouch());
+        touchListener.reset();
+
+        // Set filter touches to true so only unobscured touches are dispatched.
+        view.setFilterTouchesWhenObscured(true);
+        assertTrue(view.getFilterTouchesWhenObscured());
+
+        view.dispatchTouchEvent(unobscuredTouch);
+        assertTrue(touchListener.hasOnTouch());
+        touchListener.reset();
+        view.dispatchTouchEvent(obscuredTouch);
+        assertFalse(touchListener.hasOnTouch());
+        touchListener.reset();
+
+        // Set filter touches to false so all touches are dispatched.
+        view.setFilterTouchesWhenObscured(false);
+        assertFalse(view.getFilterTouchesWhenObscured());
+
+        view.dispatchTouchEvent(unobscuredTouch);
+        assertTrue(touchListener.hasOnTouch());
+        touchListener.reset();
+        view.dispatchTouchEvent(obscuredTouch);
+        assertTrue(touchListener.hasOnTouch());
+        touchListener.reset();
+    }
+
     private static class MockEditText extends EditText {
         private boolean mCalledCheckInputConnectionProxy = false;
         private boolean mCalledOnCreateInputConnection = false;
diff --git a/tests/tests/webkit/AndroidManifest.xml b/tests/tests/webkit/AndroidManifest.xml
index 493762e..f4424a8 100644
--- a/tests/tests/webkit/AndroidManifest.xml
+++ b/tests/tests/webkit/AndroidManifest.xml
@@ -22,6 +22,9 @@
     <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>
     <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"/>
     <application>
+        <provider android:name="android.webkit.cts.MockContentProvider"
+                  android:exported="true"
+                  android:authorities="android.webkit.cts.MockContentProvider" />
         <uses-library android:name="android.test.runner" />
     </application>
 
diff --git a/tests/tests/webkit/src/android/webkit/cts/MockContentProvider.java b/tests/tests/webkit/src/android/webkit/cts/MockContentProvider.java
new file mode 100644
index 0000000..b9f3891
--- /dev/null
+++ b/tests/tests/webkit/src/android/webkit/cts/MockContentProvider.java
@@ -0,0 +1,100 @@
+/*
+ * 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.webkit.cts;
+
+import android.content.ContentProvider;
+import android.content.ContentProvider.PipeDataWriter;
+import android.content.ContentValues;
+import android.content.res.AssetFileDescriptor;
+import android.database.Cursor;
+import android.net.Uri;
+import android.os.Bundle;
+import android.os.ParcelFileDescriptor;
+
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.OutputStreamWriter;
+import java.io.PrintWriter;
+import java.io.UnsupportedEncodingException;
+
+public class MockContentProvider extends ContentProvider
+        implements PipeDataWriter<String> {
+
+    public static final String AUTHORITY = MockContentProvider.class.getName();
+
+    @Override
+    public boolean onCreate() {
+        return true;
+    }
+
+    @Override
+    public int delete(Uri uri, String selection, String[] selectionArgs) {
+        return 0;
+    }
+
+    @Override
+    public String getType(Uri uri) {
+        return "text/html";
+    }
+
+    @Override
+    public Uri insert(Uri uri, ContentValues initialValues) {
+        return null;
+    }
+
+    @Override
+    public Cursor query(Uri uri, String[] projection, String selection,
+            String[] selectionArgs, String sortOrder) {
+        return null;
+    }
+
+    @Override
+    public int update(Uri uri, ContentValues values, String selection,
+            String[] selectionArgs) {
+        return 0;
+    }
+
+    @Override
+    public AssetFileDescriptor openAssetFile(Uri uri, String mode)
+            throws FileNotFoundException {
+        return new AssetFileDescriptor(openPipeHelper(uri, "text/html", null,
+                "<html><title>" + uri.toString() + "</title></html>", this), 0,
+                AssetFileDescriptor.UNKNOWN_LENGTH);
+    }
+
+    @Override
+    public void writeDataToPipe(ParcelFileDescriptor output, Uri uri, String mimeType, Bundle opts,
+            String args) {
+        FileOutputStream outputStream = new FileOutputStream(output.getFileDescriptor());
+        PrintWriter printWriter = null;
+        try {
+            printWriter = new PrintWriter(new OutputStreamWriter(outputStream, "UTF-8"));
+            printWriter.print(args);
+        } catch (UnsupportedEncodingException e) {
+        } finally {
+            if (printWriter != null) {
+                printWriter.flush();
+            }
+            try {
+                outputStream.close();
+            } catch (IOException e) {
+            }
+        }
+    }
+}
+
diff --git a/tests/tests/webkit/src/android/webkit/cts/WebViewTest.java b/tests/tests/webkit/src/android/webkit/cts/WebViewTest.java
index 1bec05c..9815aef 100644
--- a/tests/tests/webkit/src/android/webkit/cts/WebViewTest.java
+++ b/tests/tests/webkit/src/android/webkit/cts/WebViewTest.java
@@ -16,6 +16,7 @@
 
 package android.webkit.cts;
 
+import android.content.ContentResolver;
 import android.content.Context;
 import android.content.res.AssetManager;
 import android.cts.util.EvaluateJsResultPollingCheck;
@@ -79,6 +80,7 @@
 import java.io.IOException;
 import java.util.Collections;
 import java.util.Date;
+import java.util.concurrent.atomic.AtomicReference;
 import java.util.concurrent.Callable;
 import java.util.concurrent.FutureTask;
 import java.util.concurrent.TimeUnit;
@@ -358,6 +360,18 @@
     }
 
     @UiThreadTest
+    public void testLoadUrlDoesNotStripParamsWhenLoadingContentUrls() throws Exception {
+        Uri.Builder uriBuilder = new Uri.Builder().scheme(
+                ContentResolver.SCHEME_CONTENT).authority(MockContentProvider.AUTHORITY);
+        uriBuilder.appendPath("foo.html").appendQueryParameter("param","bar");
+        String url = uriBuilder.build().toString();
+        mOnUiThread.loadUrlAndWaitForCompletion(url);
+        // verify the parameter is not stripped.
+        Uri uri = Uri.parse(mWebView.getTitle());
+        assertEquals("bar", uri.getQueryParameter("param"));
+    }
+
+    @UiThreadTest
     public void testAppInjectedXRequestedWithHeaderIsNotOverwritten() throws Exception {
         startWebServer(false);
         String url = mWebServer.getAssetUrl(TestHtmlConstants.HELLO_WORLD_URL);
@@ -651,51 +665,64 @@
         assertEquals("removedObject", resultObject.getResult());
     }
 
+    private final class TestPictureListener implements PictureListener {
+        public int callCount;
+
+        @Override
+        public void onNewPicture(WebView view, Picture picture) {
+            // Need to inform the listener tracking new picture
+            // for the "page loaded" knowledge since it has been replaced.
+            mOnUiThread.onNewPicture();
+            this.callCount += 1;
+        }
+    }
+
+    private Picture waitForPictureToHaveColor(int color,
+            final TestPictureListener listener) throws Throwable {
+        final int MAX_ON_NEW_PICTURE_ITERATIONS = 5;
+        final AtomicReference<Picture> pictureRef = new AtomicReference<Picture>();
+        for (int i = 0; i < MAX_ON_NEW_PICTURE_ITERATIONS; i++) {
+            final int oldCallCount = listener.callCount;
+            runTestOnUiThread(new Runnable() {
+                @Override
+                public void run() {
+                    pictureRef.set(mWebView.capturePicture());
+                }
+            });
+            if (isPictureFilledWithColor(pictureRef.get(), color))
+                break;
+            new PollingCheck(TEST_TIMEOUT) {
+                @Override
+                protected boolean check() {
+                    return listener.callCount > oldCallCount;
+                }
+            }.run();
+        }
+        return pictureRef.get();
+    }
+
     public void testCapturePicture() throws Exception, Throwable {
+        final TestPictureListener listener = new TestPictureListener();
+
         startWebServer(false);
         final String url = mWebServer.getAssetUrl(TestHtmlConstants.BLANK_PAGE_URL);
-        // showing the blank page will make the picture filled with background color
+        mOnUiThread.setPictureListener(listener);
+        // Showing the blank page will fill the picture with the background color.
         mOnUiThread.loadUrlAndWaitForCompletion(url);
-        getInstrumentation().waitForIdleSync();
-
-        class PictureRunnable implements Runnable {
-            private Picture mPicture;
-            @Override
-            public void run() {
-                mPicture = mWebView.capturePicture();
-                Bitmap b = Bitmap.createBitmap(mPicture.getWidth(), mPicture.getHeight(),
-                        Config.ARGB_8888);
-                mPicture.draw(new Canvas(b));
-                // default color is white
-                assertBitmapFillWithColor(b, Color.WHITE);
-
-                mWebView.setBackgroundColor(Color.CYAN);
-                mOnUiThread.reloadAndWaitForCompletion();
-            }
-            public Picture getPicture() {
-                return mPicture;
-            }
-        }
-        PictureRunnable runnable = new PictureRunnable();
-        runTestOnUiThread(runnable);
-        getInstrumentation().waitForIdleSync();
-
-        // the content of the picture will not be updated automatically
-        Picture picture = runnable.getPicture();
-        Bitmap b = Bitmap.createBitmap(picture.getWidth(), picture.getHeight(), Config.ARGB_8888);
-        picture.draw(new Canvas(b));
-        assertBitmapFillWithColor(b, Color.WHITE);
+        // The default background color is white.
+        Picture oldPicture = waitForPictureToHaveColor(Color.WHITE, listener);
 
         runTestOnUiThread(new Runnable() {
             @Override
             public void run() {
-                // update the content
-                Picture p = mWebView.capturePicture();
-                Bitmap b = Bitmap.createBitmap(p.getWidth(), p.getHeight(), Config.ARGB_8888);
-                p.draw(new Canvas(b));
-                assertBitmapFillWithColor(b, Color.CYAN);
+                mWebView.setBackgroundColor(Color.CYAN);
             }
         });
+        mOnUiThread.reloadAndWaitForCompletion();
+        waitForPictureToHaveColor(Color.CYAN, listener);
+
+        // The content of the previously captured picture will not be updated automatically.
+        assertTrue(isPictureFilledWithColor(oldPicture, Color.WHITE));
     }
 
     public void testSetPictureListener() throws Exception, Throwable {
@@ -850,6 +877,7 @@
         // Verify that the resource request makes it to the server.
         assertTrue(mWebServer.wasResourceRequested(imgUrl));
         assertEquals(historyUrl, mWebView.getUrl());
+        assertEquals(historyUrl, mWebView.getOriginalUrl());
 
         // Check that reported URL is "about:blank" when supplied history URL
         // is null.
@@ -859,6 +887,7 @@
                 "text/html", "UTF-8", null);
         assertTrue(mWebServer.wasResourceRequested(imgUrl));
         assertEquals("about:blank", mWebView.getUrl());
+        assertEquals("about:blank", mWebView.getOriginalUrl());
 
         // Test that JavaScript can access content from the same origin as the base URL.
         mWebView.getSettings().setJavaScriptEnabled(true);
@@ -883,18 +912,19 @@
         mOnUiThread.loadDataWithBaseURLAndWaitForCompletion("http://www.foo.com",
                 HTML_HEADER + "<title>Hello World%21</title><body>bar</body></html>",
                 "text/html", "UTF-8", null);
-        assertEquals("Hello World%21", mOnUiThread.getTitle());
+        assertEquals("Hello World%21", mWebView.getTitle());
 
         // Check that when a data: base URL is used, we treat the String to load as a data: URL
         // and run load steps such as decoding URL entities (i.e., contrary to the test case
         // above.)
         mOnUiThread.loadDataWithBaseURLAndWaitForCompletion("data:foo",
                 HTML_HEADER + "<title>Hello World%21</title></html>", "text/html", "UTF-8", null);
-        assertEquals("Hello World!", mOnUiThread.getTitle());
+        assertEquals("Hello World!", mWebView.getTitle());
 
         // Check the method is null input safe.
         mOnUiThread.loadDataWithBaseURLAndWaitForCompletion(null, null, null, null, null);
-        assertEquals("about:blank", mOnUiThread.getUrl());
+        assertEquals("about:blank", mWebView.getUrl());
+        assertEquals("about:blank", mWebView.getOriginalUrl());
     }
 
     private static class WaitForFindResultsListener extends FutureTask<Integer>
@@ -2158,11 +2188,22 @@
         }
     }
 
-    private void assertBitmapFillWithColor(Bitmap bitmap, int color) {
-        for (int i = 0; i < bitmap.getWidth(); i ++)
+    private boolean isPictureFilledWithColor(Picture picture, int color) {
+        if (picture.getWidth() == 0 || picture.getHeight() == 0)
+            return false;
+
+        Bitmap bitmap = Bitmap.createBitmap(picture.getWidth(), picture.getHeight(),
+                Config.ARGB_8888);
+        picture.draw(new Canvas(bitmap));
+
+        for (int i = 0; i < bitmap.getWidth(); i ++) {
             for (int j = 0; j < bitmap.getHeight(); j ++) {
-                assertEquals(color, bitmap.getPixel(i, j));
+                if (color != bitmap.getPixel(i, j)) {
+                    return false;
+                }
             }
+        }
+        return true;
     }
 
     // Find b1 inside b2
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..4df8e62 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;
@@ -34,6 +36,7 @@
 
     // work done should be reported in GLES..View
     private CountDownLatch mDone = new CountDownLatch(1);
+    private HashSet<String> mOpenGlExtensions = new HashSet<String>();
     private HashSet<String> mFormats = new HashSet<String>();
     private String mGraphicsVendor;
     private String mGraphicsRenderer;
@@ -54,9 +57,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();
@@ -65,14 +68,20 @@
             }
         }
 
-        StringBuilder builder = new StringBuilder();
+        StringBuilder textureBuilder = new StringBuilder();
         for (String format: mFormats) {
-            builder.append(format);
-            builder.append(";");
+            textureBuilder.append(format).append(";");
+        }
+        StringBuilder extensionBuilder = new StringBuilder();
+        for (String extension : mOpenGlExtensions) {
+            extensionBuilder.append(extension).append(";");
         }
         DeviceInfoInstrument.addResult(
+                DeviceInfoConstants.OPEN_GL_EXTENSIONS,
+                extensionBuilder.toString());
+        DeviceInfoInstrument.addResult(
                 DeviceInfoConstants.OPEN_GL_COMPRESSED_TEXTURE_FORMATS,
-                builder.toString());
+                textureBuilder.toString());
         DeviceInfoInstrument.addResult(
                 DeviceInfoConstants.GRAPHICS_VENDOR,
                 mGraphicsVendor);
@@ -82,6 +91,10 @@
         mDone.countDown();
     }
 
+    public void addOpenGlExtension(String openGlExtension) {
+        mOpenGlExtensions.add(openGlExtension);
+    }
+
     public void addCompressedTextureFormat(String format) {
         mFormats.add(format);
     }
@@ -94,15 +107,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/DeviceInfoConstants.java b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoConstants.java
index ddc87dc..d77a44c 100644
--- a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoConstants.java
+++ b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoConstants.java
@@ -23,6 +23,7 @@
  */
 public interface DeviceInfoConstants {
 
+    public static final String OPEN_GL_EXTENSIONS = "openGlExtensions";
     public static final String OPEN_GL_COMPRESSED_TEXTURE_FORMATS =
             "openGlCompressedTextureFormats";
     public static final String SYS_LIBRARIES = "systemlibraries";
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/getinfo/GLESSurfaceView.java b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/GLESSurfaceView.java
index b3af3a7..1d3bf7f 100644
--- a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/GLESSurfaceView.java
+++ b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/GLESSurfaceView.java
@@ -81,6 +81,7 @@
             scanner.useDelimiter(" ");
             while (scanner.hasNext()) {
                 String ext = scanner.next();
+                mParent.addOpenGlExtension(ext);
                 if (ext.contains("texture")) {
                     if (ext.contains("compression") || ext.contains("compressed")) {
                         Log.i(TAG, "Compression supported: " + ext);
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/tradefed-host/src/com/android/cts/tradefed/result/DeviceInfoResult.java b/tools/tradefed-host/src/com/android/cts/tradefed/result/DeviceInfoResult.java
index 56b3913..dd91af0 100644
--- a/tools/tradefed-host/src/com/android/cts/tradefed/result/DeviceInfoResult.java
+++ b/tools/tradefed-host/src/com/android/cts/tradefed/result/DeviceInfoResult.java
@@ -53,6 +53,10 @@
     private static final String OPENGL_TEXTURE_FORMAT_TAG = "TextureFormat";
     private static final String OPENGL_TEXTURE_FORMAT_DELIM = ";";
 
+    private static final String OPENGL_EXTENSIONS_TAG = "OpenGlExtensions";
+    private static final String OPENGL_EXTENSION_TAG = "OpenGlExtension";
+    private static final String OPENGL_EXTENSION_DELIM = ";";
+
     private static final String SYSLIB_INFO_TAG = "SystemLibrariesInfo";
     private static final String SYSLIB_TAG = "Library";
     private static final String SYSLIB_DELIM = ";";
@@ -73,47 +77,52 @@
     public void serialize(KXmlSerializer serializer) throws IOException {
         serializer.startTag(ns, TAG);
 
-        if (!mMetrics.isEmpty()) {
-
-            // Extract metrics that need extra handling, and then dump the remainder into BuildInfo
-            Map<String, String> metricsCopy = new HashMap<String, String>(mMetrics);
-            serializer.startTag(ns, SCREEN_TAG);
-            serializer.attribute(ns, DeviceInfoConstants.RESOLUTION,
-                    getMetric(metricsCopy, DeviceInfoConstants.RESOLUTION));
-            serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY,
-                    getMetric(metricsCopy, DeviceInfoConstants.SCREEN_DENSITY));
-            serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY_BUCKET,
-                    getMetric(metricsCopy, DeviceInfoConstants.SCREEN_DENSITY_BUCKET));
-            serializer.attribute(ns, DeviceInfoConstants.SCREEN_SIZE,
-                    getMetric(metricsCopy, DeviceInfoConstants.SCREEN_SIZE));
-            serializer.endTag(ns, SCREEN_TAG);
-
-            serializer.startTag(ns, PHONE_TAG);
-            serializer.attribute(ns, DeviceInfoConstants.PHONE_NUMBER,
-                    getMetric(metricsCopy, DeviceInfoConstants.PHONE_NUMBER));
-            serializer.endTag(ns, PHONE_TAG);
-
-            String featureData = getMetric(metricsCopy, DeviceInfoConstants.FEATURES);
-            String processData = getMetric(metricsCopy, DeviceInfoConstants.PROCESSES);
-            String sysLibData = getMetric(metricsCopy, DeviceInfoConstants.SYS_LIBRARIES);
-            String textureData = getMetric(metricsCopy,
-                    DeviceInfoConstants.OPEN_GL_COMPRESSED_TEXTURE_FORMATS);
-
-            // dump the remaining metrics without translation
-            serializer.startTag(ns, BUILD_TAG);
-            for (Map.Entry<String, String> metricEntry : metricsCopy.entrySet()) {
-                serializer.attribute(ns, metricEntry.getKey(), metricEntry.getValue());
-            }
-            serializer.endTag(ns, BUILD_TAG);
-
-            serializeFeatureInfo(serializer, featureData);
-            serializeProcessInfo(serializer, processData);
-            serializeSystemLibrariesInfo(serializer, sysLibData);
-            serializeOpenGLCompressedTextureFormatsInfo(serializer, textureData);
-        } else {
+        if (mMetrics.isEmpty()) {
             // this might be expected, if device info collection was turned off
             CLog.d("Could not find device info");
+            serializer.endTag(ns, TAG);
+            return;
         }
+
+        // Extract metrics that need extra handling, and then dump the remainder into BuildInfo
+        Map<String, String> metricsCopy = new HashMap<String, String>(mMetrics);
+        serializer.startTag(ns, SCREEN_TAG);
+        serializer.attribute(ns, DeviceInfoConstants.RESOLUTION,
+                getMetric(metricsCopy, DeviceInfoConstants.RESOLUTION));
+        serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY,
+                getMetric(metricsCopy, DeviceInfoConstants.SCREEN_DENSITY));
+        serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY_BUCKET,
+                getMetric(metricsCopy, DeviceInfoConstants.SCREEN_DENSITY_BUCKET));
+        serializer.attribute(ns, DeviceInfoConstants.SCREEN_SIZE,
+                getMetric(metricsCopy, DeviceInfoConstants.SCREEN_SIZE));
+        serializer.endTag(ns, SCREEN_TAG);
+
+        serializer.startTag(ns, PHONE_TAG);
+        serializer.attribute(ns, DeviceInfoConstants.PHONE_NUMBER,
+                getMetric(metricsCopy, DeviceInfoConstants.PHONE_NUMBER));
+        serializer.endTag(ns, PHONE_TAG);
+
+        String featureData = getMetric(metricsCopy, DeviceInfoConstants.FEATURES);
+        String processData = getMetric(metricsCopy, DeviceInfoConstants.PROCESSES);
+        String sysLibData = getMetric(metricsCopy, DeviceInfoConstants.SYS_LIBRARIES);
+        String textureData = getMetric(metricsCopy,
+                DeviceInfoConstants.OPEN_GL_COMPRESSED_TEXTURE_FORMATS);
+        String openGlExtensionData = getMetric(metricsCopy,
+                DeviceInfoConstants.OPEN_GL_EXTENSIONS);
+
+        // dump the remaining metrics without translation
+        serializer.startTag(ns, BUILD_TAG);
+        for (Map.Entry<String, String> metricEntry : metricsCopy.entrySet()) {
+            serializer.attribute(ns, metricEntry.getKey(), metricEntry.getValue());
+        }
+        serializer.endTag(ns, BUILD_TAG);
+
+        serializeFeatureInfo(serializer, featureData);
+        serializeProcessInfo(serializer, processData);
+        serializeSystemLibrariesInfo(serializer, sysLibData);
+        serializeOpenGLCompressedTextureFormatsInfo(serializer, textureData);
+        serializeOpenGLExtensions(serializer, openGlExtensionData);
+        // End
         serializer.endTag(ns, TAG);
     }
 
@@ -148,6 +157,12 @@
                 OPENGL_TEXTURE_FORMAT_DELIM, null, formats, "name");
     }
 
+    private void serializeOpenGLExtensions(KXmlSerializer serializer, String extensions)
+            throws IOException {
+        serialize(serializer, OPENGL_EXTENSIONS_TAG, OPENGL_EXTENSION_TAG,
+                OPENGL_EXTENSION_DELIM, null, extensions, "name");
+    }
+
     private void serializeSystemLibrariesInfo(KXmlSerializer serializer, String libs)
             throws IOException {
         serialize(serializer, SYSLIB_INFO_TAG, SYSLIB_TAG, SYSLIB_DELIM, null, libs, "name");
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)