Merge "Fix ViewTest#testWindowFocusChanged" into jb-dev
diff --git a/suite/audio_quality/client/src/com/android/cts/audiotest/AudioProtocol.java b/suite/audio_quality/client/src/com/android/cts/audiotest/AudioProtocol.java
index 3670bd9..32cc3ed 100644
--- a/suite/audio_quality/client/src/com/android/cts/audiotest/AudioProtocol.java
+++ b/suite/audio_quality/client/src/com/android/cts/audiotest/AudioProtocol.java
@@ -117,6 +117,10 @@
             Log.e(TAG, "ignore exception", e);
         } finally {
             track.stop();
+            track.flush();
+            track.release();
+            mPlaybackThread.quitLoop(false);
+            mPlaybackThread = null;
         }
     }
 
@@ -195,18 +199,19 @@
             mRecord = null;
         }
         if (mRecordThread != null) {
-            mRecordThread.quitLoop();
+            mRecordThread.quitLoop(true);
             mRecordThread = null;
         }
         if (mPlayback != null) {
             if (mPlayback.getState() != AudioTrack.STATE_UNINITIALIZED) {
                 mPlayback.stop();
+                mPlayback.flush();
             }
             mPlayback.release();
             mPlayback = null;
         }
         if (mPlaybackThread != null) {
-            mPlaybackThread.quitLoop();
+            mPlaybackThread.quitLoop(true);
             mPlaybackThread = null;
         }
         mDataMap.clear();
@@ -241,12 +246,17 @@
             if (samplingRate != 44100) {
                 throw new ProtocolError("wrong rate");
             }
+            //FIXME cannot start playback again
             //TODO repeat
             //FIXME in MODE_STATIC, setNotificationMarkerPosition does not work with full length
             mPlaybackThread = new LoopThread(new Runnable() {
 
                 @Override
                 public void run() {
+                    if (mPlayback != null) {
+                        mPlayback.release();
+                        mPlayback = null;
+                    }
                     int type = (mode == 0) ? AudioManager.STREAM_VOICE_CALL :
                         AudioManager.STREAM_MUSIC;
                     mPlayback = new AudioTrack(type, samplingRate,
@@ -282,12 +292,14 @@
         Log.d(TAG, "stopPlayback");
         assertProtocol(len == 0, "wrong payload len");
         if (mPlayback != null) {
+            Log.d(TAG, "release AudioTrack");
             mPlayback.stop();
+            mPlayback.flush();
             mPlayback.release();
             mPlayback = null;
         }
         if (mPlaybackThread != null) {
-            mPlaybackThread.quitLoop();
+            mPlaybackThread.quitLoop(true);
             mPlaybackThread = null;
         }
         sendSimpleReplyHeader(CMD_STOP_PLAYBACK, PROTOCOL_OK);
@@ -381,7 +393,7 @@
             mRecord = null;
         }
         if (mRecordThread != null) {
-            mRecordThread.quitLoop();
+            mRecordThread.quitLoop(true);
             mRecordThread = null;
         }
         sendSimpleReplyHeader(CMD_STOP_RECORDING, PROTOCOL_OK);
@@ -421,17 +433,20 @@
             mLooper = Looper.myLooper();
             Log.d(TAG, "run runnable");
             super.run();
-            Log.d(TAG, "loop");
+            //Log.d(TAG, "loop");
             Looper.loop();
         }
         // should be called outside this thread
-        public void quitLoop() {
+        public void quitLoop(boolean wait) {
             mLooper.quit();
             try {
-                join();
+                if (wait) {
+                    join();
+                }
             } catch (InterruptedException e) {
                 // ignore
             }
+            Log.d(TAG, "quit thread");
         }
     }
 
diff --git a/suite/audio_quality/lib/include/task/TaskAll.h b/suite/audio_quality/lib/include/task/TaskAll.h
index 2f04fc6..3729ef8 100644
--- a/suite/audio_quality/lib/include/task/TaskAll.h
+++ b/suite/audio_quality/lib/include/task/TaskAll.h
@@ -30,5 +30,6 @@
 #include "TaskSound.h"
 #include "TaskSave.h"
 #include "TaskMessage.h"
+#include "TaskDownload.h"
 
 #endif // CTSAUDIO_TASKALL_H
diff --git a/suite/audio_quality/lib/include/task/TaskDownload.h b/suite/audio_quality/lib/include/task/TaskDownload.h
new file mode 100644
index 0000000..64aae45
--- /dev/null
+++ b/suite/audio_quality/lib/include/task/TaskDownload.h
@@ -0,0 +1,34 @@
+/*
+ * 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.
+ */
+
+
+#ifndef CTSAUDIO_TASKDOWNLOAD_H
+#define CTSAUDIO_TASKDOWNLOAD_H
+#include <utils/String8.h>
+#include <utils/StrongPointer.h>
+#include "audio/Buffer.h"
+#include "TaskGeneric.h"
+
+
+class TaskDownload: public TaskGeneric {
+public:
+    TaskDownload();
+    virtual ~TaskDownload();
+    virtual TaskGeneric::ExecutionResult run();
+};
+
+
+#endif // CTSAUDIO_TASKDOWNLOAD_H
diff --git a/suite/audio_quality/lib/include/task/TaskGeneric.h b/suite/audio_quality/lib/include/task/TaskGeneric.h
index 6dc269e..fe5215d 100644
--- a/suite/audio_quality/lib/include/task/TaskGeneric.h
+++ b/suite/audio_quality/lib/include/task/TaskGeneric.h
@@ -43,7 +43,8 @@
         ETaskSound          = 9,
         ETaskSave           = 10,
         ETaskMessage        = 11,
-        ETaskInvalidLast    = 12,
+        ETaskDownload       = 12,
+        ETaskInvalidLast    = 13,
         //no ETaskInclude include does not involve any action.
     };
 
diff --git a/suite/audio_quality/lib/src/GenericFactory.cpp b/suite/audio_quality/lib/src/GenericFactory.cpp
index f615876..2402055 100644
--- a/suite/audio_quality/lib/src/GenericFactory.cpp
+++ b/suite/audio_quality/lib/src/GenericFactory.cpp
@@ -59,6 +59,9 @@
     case TaskGeneric::ETaskMessage:
         task = new TaskMessage();
         break;
+    case TaskGeneric::ETaskDownload:
+        task = new TaskDownload();
+        break;
     default:
         LOGE("GenericFactory::createTask unsupported type %d", type);
         return NULL;
diff --git a/suite/audio_quality/lib/src/audio/AudioProtocol.cpp b/suite/audio_quality/lib/src/audio/AudioProtocol.cpp
index a046432..bf1ca22 100644
--- a/suite/audio_quality/lib/src/audio/AudioProtocol.cpp
+++ b/suite/audio_quality/lib/src/audio/AudioProtocol.cpp
@@ -111,7 +111,7 @@
     mBuffer[1] = htonl(20);
     mBuffer[2] = htonl(param.mId);
     mBuffer[3] = htonl(param.mSamplingF);
-    uint32_t mode = param.mStereo ? 1<<31 : 0;
+    uint32_t mode = param.mStereo ? 0x80000000 : 0;
     mode |= param.mMode;
     mBuffer[4] = htonl(mode);
     mBuffer[5] = htonl(param.mVolume);
@@ -132,7 +132,7 @@
     mBuffer[0] = htonl(ECmdStartRecording);
     mBuffer[1] = htonl(16);
     mBuffer[2] = htonl(param.mSamplingF);
-    uint32_t mode = param.mStereo ? 1<<31 : 0;
+    uint32_t mode = param.mStereo ? 0x80000000 : 0;
     mode |= param.mMode;
     mBuffer[3] = htonl(mode);
     mBuffer[4] = htonl(param.mVolume);
diff --git a/suite/audio_quality/lib/src/audio/RemoteAudio.cpp b/suite/audio_quality/lib/src/audio/RemoteAudio.cpp
index 10ae14c..bb9474b 100644
--- a/suite/audio_quality/lib/src/audio/RemoteAudio.cpp
+++ b/suite/audio_quality/lib/src/audio/RemoteAudio.cpp
@@ -235,6 +235,7 @@
         LOGE("Buffer id %d not registered", id);
         return false;
     }
+    LOGD("RemoteAudio::startPlayback stereo %d mode %d", stereo, mode);
     handler->mActive = true;
     handler->getParam().mStereo = stereo;
     handler->getParam().mSamplingF = samplingF;
diff --git a/suite/audio_quality/lib/src/task/ModelBuilder.cpp b/suite/audio_quality/lib/src/task/ModelBuilder.cpp
index 87373ca..6f34f5c 100644
--- a/suite/audio_quality/lib/src/task/ModelBuilder.cpp
+++ b/suite/audio_quality/lib/src/task/ModelBuilder.cpp
@@ -30,7 +30,8 @@
 };
 static const ModelBuilder::ChildInfo SETUP_TABLE[] = {
     { TaskGeneric::ETaskSound, false },
-    { TaskGeneric::ETaskProcess, false }
+    { TaskGeneric::ETaskProcess, false },
+    { TaskGeneric::ETaskDownload, false }
 };
 static const ModelBuilder::ChildInfo ACTION_TABLE[] = {
     { TaskGeneric::ETaskSequential, true }
@@ -58,7 +59,8 @@
     { "output", TaskGeneric::ETaskOutput, NULL, 0 },
     { "sound", TaskGeneric::ETaskSound, NULL, 0 },
     { "save", TaskGeneric::ETaskSave, NULL, 0 },
-    { "message", TaskGeneric::ETaskMessage, NULL, 0 }
+    { "message", TaskGeneric::ETaskMessage, NULL, 0 },
+    { "download", TaskGeneric::ETaskDownload, NULL, 0 }
 };
 
 
diff --git a/suite/audio_quality/lib/src/task/TaskDownload.cpp b/suite/audio_quality/lib/src/task/TaskDownload.cpp
new file mode 100644
index 0000000..dacefc5
--- /dev/null
+++ b/suite/audio_quality/lib/src/task/TaskDownload.cpp
@@ -0,0 +1,61 @@
+/*
+ * 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.
+ */
+
+#include <UniquePtr.h>
+#include "Log.h"
+#include "audio/AudioSignalFactory.h"
+#include "audio/RemoteAudio.h"
+#include "StringUtil.h"
+#include "task/TaskCase.h"
+#include "task/TaskDownload.h"
+
+static const android::String8 STR_ID("id");
+
+TaskDownload::TaskDownload()
+    : TaskGeneric(TaskGeneric::ETaskDownload)
+{
+    const android::String8* list[] = {&STR_ID, NULL};
+    registerSupportedStringAttributes(list);
+}
+
+TaskDownload::~TaskDownload()
+{
+
+}
+
+TaskGeneric::ExecutionResult TaskDownload::run()
+{
+    android::String8 id;
+    if (!findStringAttribute(STR_ID, id)) {
+        LOGE("TaskDownload::run %s string not found", STR_ID.string());
+        return TaskGeneric::EResultError;
+    }
+
+    android::sp<Buffer> buffer = getTestCase()->findBuffer(id);
+    if (buffer.get() == NULL) {
+        LOGE("TaskDownload::run cannot find buffer %s", id.string());
+        return TaskGeneric::EResultError;
+    }
+    int downloadId;
+    if (!getTestCase()->getRemoteAudio()->downloadData(id, buffer, downloadId)) {
+        return TaskGeneric::EResultError;
+    }
+    LOGI("Downloaded buffer %s to DUT with id %d", id.string(), downloadId);
+    return TaskGeneric::EResultOK;
+}
+
+
+
diff --git a/suite/audio_quality/lib/src/task/TaskOutput.cpp b/suite/audio_quality/lib/src/task/TaskOutput.cpp
index ce3a7d8..be6f4fd 100644
--- a/suite/audio_quality/lib/src/task/TaskOutput.cpp
+++ b/suite/audio_quality/lib/src/task/TaskOutput.cpp
@@ -54,15 +54,13 @@
         LOGE("prepare failed");
         return TaskGeneric::EResultError;
     }
+    android::sp<Buffer> buffer = getTestCase()->findBuffer(mId);
+    if (buffer.get() == NULL) {
+        LOGE("cannot find buffer %s", mId.string());
+        return TaskGeneric::EResultError;
+    }
+    buffer->restart(); // reset to play from beginning
     if (localDevice) {
-        android::sp<Buffer> buffer;
-        buffer = getTestCase()->findBuffer(mId);
-        if (buffer.get() == NULL) {
-            LOGE("cannot find buffer %s", mId.string());
-            return TaskGeneric::EResultError;
-        }
-        buffer->restart(); // reset to play from beginning
-
         if (!hw->startPlaybackOrRecord(buffer)) {
             LOGE("play failed");
             return TaskGeneric::EResultError;
@@ -73,7 +71,7 @@
             return TaskGeneric::EResultError;
         }
         AudioRemotePlayback* remote = reinterpret_cast<AudioRemotePlayback*>(hw.get());
-        if (!remote->startPlaybackForRemoteData(id, false)) { // mono always
+        if (!remote->startPlaybackForRemoteData(id, buffer->isStereo())) {
             return TaskGeneric::EResultError;
         }
     }
diff --git a/suite/audio_quality/lib/src/task/TaskSound.cpp b/suite/audio_quality/lib/src/task/TaskSound.cpp
index f530203..8dd9b4a 100644
--- a/suite/audio_quality/lib/src/task/TaskSound.cpp
+++ b/suite/audio_quality/lib/src/task/TaskSound.cpp
@@ -51,7 +51,6 @@
 
 TaskGeneric::ExecutionResult TaskSound::run()
 {
-    //TODO : needs to support data generated from process
     android::String8 id;
     if (!findStringAttribute(STR_ID, id)) {
         LOGE("TaskSound::run %s string not found", STR_ID.string());
@@ -84,6 +83,7 @@
         buffer = AudioSignalFactory::generateSineWave(AudioHardware::E2BPS, amplitude,
                 AudioHardware::ESampleRate_44100, freq, samples, true);
     } else if (StringUtil::compare(tokens->at(0), "random") == 0) {
+        // TODO FIXME it does not seem to work well.
         if (tokens->size() != 3) {
             LOGE("Wrong number of parameters %d", tokens->size());
         }
diff --git a/suite/audio_quality/test_description/all.xml b/suite/audio_quality/test_description/all.xml
deleted file mode 100644
index d022230..0000000
--- a/suite/audio_quality/test_description/all.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?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.
--->
-
-<batch name="cts_audio_all" version="1.0" description="All tests">
-	<include file="host_speaker_calibration.xml" />
-	<include file="dut_recording_thd.xml" />
-	<include file="dut_recording_spectrum.xml" />
-</batch>
diff --git a/suite/audio_quality/test_description/all_playback.xml b/suite/audio_quality/test_description/all_playback.xml
new file mode 100644
index 0000000..cf5af6f
--- /dev/null
+++ b/suite/audio_quality/test_description/all_playback.xml
@@ -0,0 +1,22 @@
+<?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.
+-->
+
+<batch name="cts_audio_all_playback" version="1.0" description="All playback tests">
+	<include file="dut_speaker_calibration.xml" />
+	<include file="dut_playback_thd.xml" />
+	<include file="dut_playback_spectrum.xml" />
+</batch>
diff --git a/suite/audio_quality/test_description/all_recording.xml b/suite/audio_quality/test_description/all_recording.xml
new file mode 100644
index 0000000..f1e78b9
--- /dev/null
+++ b/suite/audio_quality/test_description/all_recording.xml
@@ -0,0 +1,22 @@
+<?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.
+-->
+
+<batch name="cts_audio_all_recording" version="1.0" description="All recording tests">
+	<include file="host_speaker_calibration.xml" />
+	<include file="dut_recording_thd.xml" />
+	<include file="dut_recording_spectrum.xml" />
+</batch>
diff --git a/suite/audio_quality/test_description/conf/detect_usb_audio.py b/suite/audio_quality/test_description/conf/detect_usb_audio.py
old mode 100755
new mode 100644
diff --git a/suite/audio_quality/test_description/dut_playback_spectrum.xml b/suite/audio_quality/test_description/dut_playback_spectrum.xml
new file mode 100644
index 0000000..d945ff6
--- /dev/null
+++ b/suite/audio_quality/test_description/dut_playback_spectrum.xml
@@ -0,0 +1,35 @@
+<?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.
+-->
+
+<case name="dut_playback_spectrum" version="1.0" description="Check frequency spectrum for playback">
+	<setup>
+		<!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
+		<process method="script:gen_random" input="consti:10000,consti:4000,consti:44100,consti:20000" output="id:sound1" />
+		<download id="sound1" />
+	</setup>
+	<action>
+		<sequential repeat="1" index="i">
+			<input device="host" id="host_in_$i" gain="100" time="5000" sync="start" />
+			<output device="DUT" id="sound1" gain="100" mode="voice" sync="start" waitforcompletion="1" />
+		</sequential>
+		<sequential repeat="1" index="k">
+			<!-- input: host record, device record, samping rate, low frequency in Hz, high frequency in Hz, allowed error for pass in smaller side, allowed error in bigger side%, output: min value in lower side calculated normalized to 1.0, max value in higher side, calculated amplitude ratio in mannitude only between low f to high f -->
+			<process method="script:check_spectrum" input="id:sound1,id:host_in_$k,consti:44100,consti:500,consti:8000,constf:85.0,constf:150.0" output="val:min_val_$k,val:max_val_$k,id:spectrum_$k" />
+		</sequential>
+	</action>
+	<save file="sound1,host_in_.*,spectrum_.*" report="min_val_.*,max_val_.*" />
+</case>
diff --git a/suite/audio_quality/test_description/dut_playback_thd.xml b/suite/audio_quality/test_description/dut_playback_thd.xml
new file mode 100644
index 0000000..819e17f
--- /dev/null
+++ b/suite/audio_quality/test_description/dut_playback_thd.xml
@@ -0,0 +1,38 @@
+<?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.
+-->
+
+<case name="dut_playback_thd" version="1.0" description="Check THD in DUT's playback side">
+	<setup>
+		<!-- prepare sound source id: to be used in output, sine 1000Hz, 4000ms long -->
+		<sound id="sound1" type="sin:32000:1000:4000" preload="1" />
+	</setup>
+	<action>
+		<sequential repeat="1" index="i">
+			<output device="DUT" id="sound1" gain="100" sync="start" waitforcompletion="0" />
+			<sequential repeat="1" index="j">
+				<!-- dummy recording to compensate for possible playback latency -->
+				<input device="host" id="dummy" gain="100" time="1000" sync="complete" />
+				<input device="host" id="host_in_$j" gain="100" time="2000" sync="complete" />
+			</sequential>
+		</sequential>
+		<sequential repeat="1" index="k">
+			<!-- input: host record, signal frequency in Hz, THD for pass in percentile, output: THD calculated -->
+			<process method="script:playback_thd" input="id:host_in_$k,consti:1000,constf:1.0" output="val:thd_device_$k" />
+		</sequential>
+	</action>
+	<save file="host_in_.*" report="thd_.*" />
+</case>
diff --git a/suite/audio_quality/test_description/dut_recording_thd.xml b/suite/audio_quality/test_description/dut_recording_thd.xml
index 49db0d2..4567ee2 100644
--- a/suite/audio_quality/test_description/dut_recording_thd.xml
+++ b/suite/audio_quality/test_description/dut_recording_thd.xml
@@ -25,12 +25,12 @@
 	<action>
 		<sequential repeat="1" index="i">
 			<output device="host" id="sound1" gain="100" sync="start" waitforcompletion="0" />
-			<sequential repeat="5" index="j">
+			<sequential repeat="2" index="j">
 				<input device="host" id="host_in_$j" gain="100" time="4000" sync="start" />
 				<input device="DUT" id="dut_in_$j" gain="100" time="2000" sync="start" />
 			</sequential>
 		</sequential>
-		<sequential repeat="5" index="k">
+		<sequential repeat="2" index="k">
 			<!-- input: host record, device record, signal frequency in Hz, THD for pass in percentile, output: THD calculated -->
 			<process method="script:recording_thd" input="id:host_in_$k,id:dut_in_$k,consti:1000,constf:1.0" output="val:thd_host_$k,val:thd_device_$k" />
 		</sequential>
diff --git a/suite/audio_quality/test_description/dut_speaker_calibration.xml b/suite/audio_quality/test_description/dut_speaker_calibration.xml
new file mode 100644
index 0000000..9cc655b
--- /dev/null
+++ b/suite/audio_quality/test_description/dut_speaker_calibration.xml
@@ -0,0 +1,40 @@
+<?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.
+-->
+
+<case name="dut_speaker_calibration" version="1.0" description="Calibrate host recording gain">
+	<setup> <!-- 1 setup -->
+		<!-- prepare sound source id: to be used in output, sine 1000Hz, 20000ms long -->
+		<sound id="sound1" type="sin:32000:1000:5000" preload="1" />
+	</setup>
+
+	<action> <!-- 1 action -->
+		<!--  equivalent of for loop. all children will be completed before moving to the next 
+		      stage.repeat up to 100 times unless stopped by some condition -->
+		<sequential repeat="20" index="i">
+			<!--  sync start : execute only sync complete : execute + complete
+			      For sync start, complete will be called when the parent completes -->
+			<output device="DUT" id="sound1" gain="100" sync="start"/>
+			<sequential repeat="8" index="j">
+				<input device="host" id="host_in" gain="100" time="500" sync="complete" />
+				<!-- ------------moving average RMS        min for pass, max for pass                result calculated -->
+				<process method="builtin:rms_mva" input="id:host_in,consti:3000,consti:8000" output="val:rms_$i_$j" />
+				<!-- <message input="val:passfail" output_low="Volume Low" output_ok="Volume OK" output_high="Volume High" /> -->
+			</sequential>
+		</sequential>
+	</action>
+	<save file="host_in" report="rms_.*" />
+</case>
diff --git a/suite/audio_quality/test_description/dut_speaker_calibration_no_pass.xml b/suite/audio_quality/test_description/dut_speaker_calibration_no_pass.xml
new file mode 100644
index 0000000..6c97ddc
--- /dev/null
+++ b/suite/audio_quality/test_description/dut_speaker_calibration_no_pass.xml
@@ -0,0 +1,40 @@
+<?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.
+-->
+
+<case name="dut_speaker_calibration" version="1.0" description="Calibrate host recording gain">
+	<setup> <!-- 1 setup -->
+		<!-- prepare sound source id: to be used in output, sine 1000Hz, 20000ms long -->
+		<sound id="sound1" type="sin:32000:1000:5000" preload="1" />
+	</setup>
+
+	<action> <!-- 1 action -->
+		<!--  equivalent of for loop. all children will be completed before moving to the next 
+		      stage.repeat up to 100 times unless stopped by some condition -->
+		<sequential repeat="20" index="i">
+			<!--  sync start : execute only sync complete : execute + complete
+			      For sync start, complete will be called when the parent completes -->
+			<output device="DUT" id="sound1" gain="100" sync="start" waitforcompletion="1" />
+			<sequential repeat="8" index="j">
+				<input device="host" id="host_in" gain="100" time="500" sync="complete" />
+				<!-- ------------moving average RMS        min for pass, max for pass                result calculated -->
+				<process method="builtin:rms_mva" input="id:host_in,consti:2,consti:1" output="val:rms_$i_$j" />
+				<!-- <message input="val:passfail" output_low="Volume Low" output_ok="Volume OK" output_high="Volume High" /> -->
+			</sequential>
+		</sequential>
+	</action>
+	<save file="host_in" report="rms_.*" />
+</case>
diff --git a/suite/audio_quality/test_description/experimental/chirp_400_20000.r2s b/suite/audio_quality/test_description/experimental/chirp_400_20000.r2s
new file mode 100644
index 0000000..46ba654
--- /dev/null
+++ b/suite/audio_quality/test_description/experimental/chirp_400_20000.r2s
Binary files differ
diff --git a/suite/audio_quality/test_description/experimental/dut_playback_spectrum_chirp.xml b/suite/audio_quality/test_description/experimental/dut_playback_spectrum_chirp.xml
new file mode 100644
index 0000000..63374eb
--- /dev/null
+++ b/suite/audio_quality/test_description/experimental/dut_playback_spectrum_chirp.xml
@@ -0,0 +1,34 @@
+<?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.
+-->
+
+<case name="dut_playback_spectrum_chirp" version="1.0" description="Check frequency spectrum for playback">
+	<setup>
+		<!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
+		<sound id="chirp" type="file:test_description/experimental/chirp_400_20000.r2s" preload="1" />
+	</setup>
+	<action>
+		<sequential repeat="1" index="i">
+                        <input device="host" id="host_in_$i" gain="100" time="5000" sync="start" />
+			<output device="DUT" id="chirp" gain="100" mode="voice" sync="start" waitforcompletion="0" />
+		</sequential>
+		<sequential repeat="1" index="k">
+			<!-- input: host record, device record, samping rate, low frequency in Hz, high frequency in Hz, allowed error for pass in smaller side, allowed error in bigger side%, output: min value in lower side calculated normalized to 1.0, max value in higher side, calculated amplitude ratio in mannitude only between low f to high f -->
+			<process method="script:check_spectrum" input="id:chirp,id:host_in_$k,consti:44100,consti:500,consti:8000,constf:50.0,constf:100.0" output="val:min_val_$k,val:max_val_$k,id:spectrum_$k" />
+		</sequential>
+	</action>
+	<save file="chirp,host_in_.*,spectrum_.*" report="min_val_.*,max_val_.*" />
+</case>
diff --git a/suite/audio_quality/test_description/experimental/ref_playback_spectrum.xml b/suite/audio_quality/test_description/experimental/ref_playback_spectrum.xml
new file mode 100644
index 0000000..7653208
--- /dev/null
+++ b/suite/audio_quality/test_description/experimental/ref_playback_spectrum.xml
@@ -0,0 +1,34 @@
+<?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.
+-->
+
+<case name="dut_playback_spectrum" version="1.0" description="Check frequency spectrum for playback">
+	<setup>
+		<!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
+		<process method="script:gen_random" input="consti:10000,consti:5000,consti:44100,consti:20000" output="id:sound1" />
+	</setup>
+	<action>
+		<sequential repeat="1" index="i">
+			<input device="host" id="host_in_$i" gain="100" time="4000" sync="start" />
+			<output device="host" id="sound1" gain="100" sync="start" waitforcompletion="1" />
+		</sequential>
+		<sequential repeat="1" index="k">
+			<!-- input: host record, device record, samping rate, low frequency in Hz, high frequency in Hz, allowed error for pass in smaller side, allowed error in bigger side%, output: min value in lower side calculated normalized to 1.0, max value in higher side, calculated amplitude ratio in mannitude only between low f to high f -->
+			<process method="script:check_spectrum" input="id:sound1,id:host_in_$k,consti:44100,consti:500,consti:8000,constf:50.0,constf:100.0" output="val:min_val_$k,val:max_val_$k,id:spectrum_$k" />
+		</sequential>
+	</action>
+	<save file="sound1,host_in_.*,spectrum_.*" report="min_val_.*,max_val_.*" />
+</case>
diff --git a/suite/audio_quality/test_description/experimental/ref_playback_spectrum_chirp.xml b/suite/audio_quality/test_description/experimental/ref_playback_spectrum_chirp.xml
new file mode 100644
index 0000000..9e689f2
--- /dev/null
+++ b/suite/audio_quality/test_description/experimental/ref_playback_spectrum_chirp.xml
@@ -0,0 +1,34 @@
+<?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.
+-->
+
+<case name="ref_playback_spectrum_chirp" version="1.0" description="Check frequency spectrum of reference speaker for playback">
+	<setup>
+		<!-- input: peak amplitude, duration in msec, sampling rate, high frequency, output: generated sound-->
+		<sound id="chirp" type="file:test_description/experimental/chirp_400_20000.r2s" />
+	</setup>
+	<action>
+		<sequential repeat="1" index="i">
+                        <input device="host" id="host_in_$i" gain="100" time="5000" sync="start" />
+			<output device="host" id="chirp" gain="100" sync="start" waitforcompletion="0" />
+		</sequential>
+		<sequential repeat="1" index="k">
+			<!-- input: host record, device record, samping rate, low frequency in Hz, high frequency in Hz, allowed error for pass in smaller side, allowed error in bigger side%, output: min value in lower side calculated normalized to 1.0, max value in higher side, calculated amplitude ratio in mannitude only between low f to high f -->
+			<process method="script:check_spectrum" input="id:chirp,id:host_in_$k,consti:44100,consti:500,consti:8000,constf:50.0,constf:100.0" output="val:min_val_$k,val:max_val_$k,id:spectrum_$k" />
+		</sequential>
+	</action>
+	<save file="chirp,host_in_.*,spectrum_.*" report="min_val_.*,max_val_.*" />
+</case>
diff --git a/suite/audio_quality/test_description/host_speaker_calibration.xml b/suite/audio_quality/test_description/host_speaker_calibration.xml
index 0bdd5a1..576d999 100644
--- a/suite/audio_quality/test_description/host_speaker_calibration.xml
+++ b/suite/audio_quality/test_description/host_speaker_calibration.xml
@@ -31,7 +31,7 @@
 			<sequential repeat="10" index="j">
 				<input device="host" id="host_in" gain="70" time="500" sync="complete" />
 				<!-- ------------moving average RMS        min for pass, max for pass                result calculated -->
-				<process method="builtin:rms_mva" input="id:host_in,consti:4000,consti:5000" output="val:rms_$i_$j" />
+				<process method="builtin:rms_mva" input="id:host_in,consti:4000,consti:6000" output="val:rms_$i_$j" />
 				<!-- <message input="val:passfail" output_low="Volume Low" output_ok="Volume OK" output_high="Volume High" /> -->
 			</sequential>
 		</sequential>
diff --git a/suite/audio_quality/test_description/processing/check_spectrum.py b/suite/audio_quality/test_description/processing/check_spectrum.py
index a571fa4..598da96 100644
--- a/suite/audio_quality/test_description/processing/check_spectrum.py
+++ b/suite/audio_quality/test_description/processing/check_spectrum.py
@@ -38,7 +38,7 @@
 
 def do_check_spectrum(hostData, DUTData, samplingRate, fLow, fHigh, margainLow, margainHigh):
     # reduce FFT resolution to have averaging effects
-    N = 256 if (len(hostData) > 512) else len(hostData)
+    N = 512 if (len(hostData) > 512) else len(hostData)
     iLow = N * fLow / samplingRate + 1 # 1 for DC
     if iLow > (N / 2 - 1):
         iLow = (N / 2 - 1)
@@ -67,19 +67,26 @@
         ((1.0 - negativeMin) < margainLow / 100.0) else False
     RatioResult = np.zeros(len(amplitudeRatio), dtype=np.int16)
     for i in range(len(amplitudeRatio)):
-        RatioResult[i] = amplitudeRatio[i] * 256 # make fixed point
+        RatioResult[i] = amplitudeRatio[i] * 1024 # make fixed point
     print "positiveMax", positiveMax, "negativeMin", negativeMin
     return (passFail, negativeMin, positiveMax, RatioResult)
 
+def toMono(stereoData):
+    n = len(stereoData)/2
+    monoData = np.zeros(n)
+    for i in range(n):
+        monoData[i] = stereoData[2 * i]
+    return monoData
+
 def check_spectrum(inputData, inputTypes):
     output = []
     outputData = []
     outputTypes = []
     # basic sanity check
     inputError = False
-    if (inputTypes[0] != TYPE_MONO):
+    if (inputTypes[0] != TYPE_MONO) and (inputTypes[0] != TYPE_STEREO):
         inputError = True
-    if (inputTypes[1] != TYPE_MONO):
+    if (inputTypes[1] != TYPE_MONO) and (inputTypes[1] != TYPE_STEREO):
         inputError = True
     if (inputTypes[2] != TYPE_I64):
         inputError = True
@@ -92,21 +99,37 @@
     if (inputTypes[6] != TYPE_DOUBLE):
         inputError = True
     if inputError:
+        print "input error"
         output.append(RESULT_ERROR)
         output.append(outputData)
         output.append(outputTypes)
         return output
     hostData = inputData[0]
+    if inputTypes[0] == TYPE_STEREO:
+        hostData = toMono(hostData)
     dutData = inputData[1]
+    if inputTypes[1] == TYPE_STEREO:
+        dutData = toMono(dutData)
     samplingRate = inputData[2]
     fLow = inputData[3]
     fHigh = inputData[4]
     margainLow = inputData[5]
     margainHigh = inputData[6]
-    delay = calc_delay.calc_delay(hostData, dutData)
-    N = len(dutData)
+    delay = 0
+    N = 0
+    hostData_ = hostData
+    dutData_ = dutData
+    if len(hostData) > len(dutData):
+        delay = calc_delay.calc_delay(hostData, dutData)
+        N = len(dutData)
+        hostData_ = hostData[delay:delay+N]
+    if len(hostData) < len(dutData):
+        delay = calc_delay.calc_delay(dutData, hostData)
+        N = len(hostData)
+        dutData_ = dutData[delay:delay+N]
+
     print "delay ", delay, "deviceRecording samples ", N
-    (passFail, minError, maxError, TF) = do_check_spectrum(hostData[delay:delay+N], dutData,\
+    (passFail, minError, maxError, TF) = do_check_spectrum(hostData_, dutData_,\
         samplingRate, fLow, fHigh, margainLow, margainHigh)
 
     if passFail:
diff --git a/suite/audio_quality/test_description/processing/check_spectrum_playback.py b/suite/audio_quality/test_description/processing/check_spectrum_playback.py
new file mode 100644
index 0000000..54cf91f
--- /dev/null
+++ b/suite/audio_quality/test_description/processing/check_spectrum_playback.py
@@ -0,0 +1,130 @@
+#!/usr/bin/python
+
+# 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.
+
+from consts import *
+import numpy as np
+import scipy as sp
+import scipy.fftpack as fft
+import matplotlib.pyplot as plt
+import sys
+sys.path.append(sys.path[0])
+import calc_delay
+
+# check if amplitude of DUT's playback
+#  lies in the given error boundary
+# input: host record
+#        sampling rate
+#        low frequency in Hz,
+#        high frequency in Hz,
+#        allowed error in negative side for pass in %,
+#        allowed error ih positive side for pass
+# output: min value in negative side, normalized to 1.0
+#         max value in positive side
+#         calculated freq spectrum in amplittude
+
+def do_check_spectrum_playback(hostData, samplingRate, fLow, fHigh, margainLow, margainHigh):
+    # reduce FFT resolution to have averaging effects
+    N = 512 if (len(hostData) > 512) else len(hostData)
+    iLow = N * fLow / samplingRate + 1 # 1 for DC
+    if iLow > (N / 2 - 1):
+        iLow = (N / 2 - 1)
+    iHigh = N * fHigh / samplingRate + 1 # 1 for DC
+    if iHigh > (N / 2 + 1):
+        iHigh = N / 2 + 1
+    print fLow, iLow, fHigh, iHigh, samplingRate
+
+    Phh, freqs = plt.psd(hostData, NFFT=N, Fs=samplingRate, Fc=0, detrend=plt.mlab.detrend_none,\
+        window=plt.mlab.window_hanning, noverlap=0, pad_to=None, sides='onesided',\
+        scale_by_freq=False)
+    print len(Phh)
+    print "Phh", abs(Phh[iLow:iHigh])
+    spectrum = np.sqrt(abs(Phh[iLow:iHigh]))
+    spectrumMean = np.mean(spectrum)
+    spectrum = spectrum / spectrumMean
+    print "Mean ", spectrumMean
+    print "Normalized spectrum", spectrum
+    positiveMax = abs(max(spectrum))
+    negativeMin = abs(min(spectrum))
+    passFail = True if (positiveMax < (margainHigh / 100.0 + 1.0)) and\
+        ((1.0 - negativeMin) < margainLow / 100.0) else False
+    spectrumResult = np.zeros(len(spectrum), dtype=np.int16)
+    for i in range(len(spectrum)):
+        spectrumResult[i] = spectrum[i] * 1024 # make fixed point
+    print "positiveMax", positiveMax, "negativeMin", negativeMin
+    return (passFail, negativeMin, positiveMax, spectrumResult)
+
+def check_spectrum_playback(inputData, inputTypes):
+    output = []
+    outputData = []
+    outputTypes = []
+    # basic sanity check
+    inputError = False
+    if (inputTypes[0] != TYPE_MONO):
+        inputError = True
+    if (inputTypes[1] != TYPE_I64):
+        inputError = True
+    if (inputTypes[2] != TYPE_I64):
+        inputError = True
+    if (inputTypes[3] != TYPE_I64):
+        inputError = True
+    if (inputTypes[4] != TYPE_DOUBLE):
+        inputError = True
+    if (inputTypes[5] != TYPE_DOUBLE):
+        inputError = True
+    if inputError:
+        output.append(RESULT_ERROR)
+        output.append(outputData)
+        output.append(outputTypes)
+        return output
+    hostData = inputData[0]
+    samplingRate = inputData[1]
+    fLow = inputData[2]
+    fHigh = inputData[3]
+    margainLow = inputData[4]
+    margainHigh = inputData[5]
+    (passFail, minError, maxError, Spectrum) = do_check_spectrum_playback(hostData, \
+        samplingRate, fLow, fHigh, margainLow, margainHigh)
+
+    if passFail:
+        output.append(RESULT_PASS)
+    else:
+        output.append(RESULT_OK)
+    outputData.append(minError)
+    outputTypes.append(TYPE_DOUBLE)
+    outputData.append(maxError)
+    outputTypes.append(TYPE_DOUBLE)
+    outputData.append(Spectrum)
+    outputTypes.append(TYPE_MONO)
+    output.append(outputData)
+    output.append(outputTypes)
+    return output
+
+# test code
+if __name__=="__main__":
+    sys.path.append(sys.path[0])
+    mod = __import__("gen_random")
+    peakAmpl = 10000
+    durationInMSec = 1000
+    samplingRate = 44100
+    fLow = 500
+    fHigh = 15000
+    data = getattr(mod, "do_gen_random")(peakAmpl, durationInMSec, samplingRate, fHigh,\
+        stereo=False)
+    print len(data)
+    (passFail, minVal, maxVal, amp) = do_check_spectrum_playback(data, samplingRate, fLow,\
+        fHigh, 1.0, 1.0)
+    plt.plot(amp)
+    plt.show()
diff --git a/suite/audio_quality/test_description/processing/playback_thd.py b/suite/audio_quality/test_description/processing/playback_thd.py
new file mode 100644
index 0000000..7242ef8
--- /dev/null
+++ b/suite/audio_quality/test_description/processing/playback_thd.py
@@ -0,0 +1,62 @@
+#!/usr/bin/python
+
+# 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.
+
+from consts import *
+import numpy as np
+import scipy as sp
+from calc_thd import *
+import calc_delay
+
+# calculate THD for dut_playback_thd case
+# Input: host recording (mono),
+#        frequency of sine in Hz (i64)
+#        THD pass level in percentile (double)
+# Output: THD device (double) in percentile
+
+def playback_thd(inputData, inputTypes):
+    output = []
+    outputData = []
+    outputTypes = []
+    # basic sanity check
+    inputError = False
+    if (inputTypes[0] != TYPE_MONO):
+        inputError = True
+    if (inputTypes[1] != TYPE_I64):
+        inputError = True
+    if (inputTypes[2] != TYPE_DOUBLE):
+        inputError = True
+    if inputError:
+        output.append(RESULT_ERROR)
+        output.append(outputData)
+        output.append(outputTypes)
+        return output
+
+    hostRecording = inputData[0]
+    signalFrequency = inputData[1]
+    thdPassPercentile = inputData[2]
+    samplingRate = 44100
+
+    thd = calc_thd(hostRecording, signalFrequency, samplingRate, 0.02) * 100
+    print "THD %", thd, "Margain % ", thdPassPercentile
+    if (thd < thdPassPercentile):
+        output.append(RESULT_PASS)
+    else:
+        output.append(RESULT_OK)
+    outputData.append(thd)
+    outputTypes.append(TYPE_DOUBLE)
+    output.append(outputData)
+    output.append(outputTypes)
+    return output
diff --git a/tests/AndroidManifest.xml b/tests/AndroidManifest.xml
index 1fde1ab..e96acda 100644
--- a/tests/AndroidManifest.xml
+++ b/tests/AndroidManifest.xml
@@ -819,7 +819,10 @@
         <provider android:name="android.content.cts.DummyProvider"
             android:authorities="android.content.cts.dummyprovider"
             android:multiprocess="true" />
-
+        <provider android:name="android.content.cts.MockRemoteContentProvider"
+            android:authorities="remotectstest"
+            android:process=":remoteprovider" android:multiprocess="false" />
+        
         <activity android:name="android.app.cts.ChildTabActivity" android:label="ChildTabActivity" />
 
         <activity android:name="android.app.cts.LauncherActivityStub"
diff --git a/tests/src/android/content/cts/MockContentProvider.java b/tests/src/android/content/cts/MockContentProvider.java
index 29c64805..de82c0d 100644
--- a/tests/src/android/content/cts/MockContentProvider.java
+++ b/tests/src/android/content/cts/MockContentProvider.java
@@ -16,6 +16,12 @@
 
 package android.content.cts;
 
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.OutputStreamWriter;
+import java.io.PrintWriter;
+import java.io.UnsupportedEncodingException;
 import java.util.HashMap;
 
 import android.content.ContentProvider;
@@ -23,37 +29,47 @@
 import android.content.ContentValues;
 import android.content.Context;
 import android.content.UriMatcher;
+import android.content.ContentProvider.PipeDataWriter;
+import android.content.res.AssetFileDescriptor;
 import android.database.Cursor;
 import android.database.SQLException;
 import android.database.sqlite.SQLiteDatabase;
 import android.database.sqlite.SQLiteOpenHelper;
 import android.database.sqlite.SQLiteQueryBuilder;
 import android.net.Uri;
+import android.os.Bundle;
 import android.os.CancellationSignal;
+import android.os.ParcelFileDescriptor;
 import android.text.TextUtils;
+import android.util.Log;
 
-public class MockContentProvider extends ContentProvider {
+public class MockContentProvider extends ContentProvider
+        implements PipeDataWriter<String> {
 
     private SQLiteOpenHelper mOpenHelper;
 
-    private static final String AUTHORITY = "ctstest";
-    private static final String DBNAME = "ctstest.db";
+    private static final String DEFAULT_AUTHORITY = "ctstest";
+    private static final String DEFAULT_DBNAME = "ctstest.db";
     private static final int DBVERSION = 2;
 
-    private static final UriMatcher URL_MATCHER;
     private static final int TESTTABLE1 = 1;
     private static final int TESTTABLE1_ID = 2;
     private static final int TESTTABLE1_CROSS = 3;
     private static final int TESTTABLE2 = 4;
     private static final int TESTTABLE2_ID = 5;
+    private static final int SELF_ID = 6;
+    private static final int CRASH_ID = 6;
 
-    private static HashMap<String, String> CTSDBTABLE1_LIST_PROJECTION_MAP;
-    private static HashMap<String, String> CTSDBTABLE2_LIST_PROJECTION_MAP;
+    private final String mAuthority;
+    private final String mDbName;
+    private final UriMatcher URL_MATCHER;
+    private HashMap<String, String> CTSDBTABLE1_LIST_PROJECTION_MAP;
+    private HashMap<String, String> CTSDBTABLE2_LIST_PROJECTION_MAP;
 
     private static class DatabaseHelper extends SQLiteOpenHelper {
 
-        DatabaseHelper(Context context) {
-            super(context, DBNAME, null, DBVERSION);
+        DatabaseHelper(Context context, String dbname) {
+            super(context, dbname, null, DBVERSION);
         }
 
         @Override
@@ -75,9 +91,46 @@
         }
     }
 
+    public MockContentProvider() {
+        this(DEFAULT_AUTHORITY, DEFAULT_DBNAME);
+    }
+
+    public MockContentProvider(String authority, String dbName) {
+        mAuthority = authority;
+        mDbName = dbName;
+
+        URL_MATCHER = new UriMatcher(UriMatcher.NO_MATCH);
+        URL_MATCHER.addURI(mAuthority, "testtable1", TESTTABLE1);
+        URL_MATCHER.addURI(mAuthority, "testtable1/#", TESTTABLE1_ID);
+        URL_MATCHER.addURI(mAuthority, "testtable1/cross", TESTTABLE1_CROSS);
+        URL_MATCHER.addURI(mAuthority, "testtable2", TESTTABLE2);
+        URL_MATCHER.addURI(mAuthority, "testtable2/#", TESTTABLE2_ID);
+        URL_MATCHER.addURI(mAuthority, "self", SELF_ID);
+        URL_MATCHER.addURI(mAuthority, "crash", CRASH_ID);
+
+        CTSDBTABLE1_LIST_PROJECTION_MAP = new HashMap<String, String>();
+        CTSDBTABLE1_LIST_PROJECTION_MAP.put("_id", "_id");
+        CTSDBTABLE1_LIST_PROJECTION_MAP.put("key", "key");
+        CTSDBTABLE1_LIST_PROJECTION_MAP.put("value", "value");
+
+        CTSDBTABLE2_LIST_PROJECTION_MAP = new HashMap<String, String>();
+        CTSDBTABLE2_LIST_PROJECTION_MAP.put("_id", "_id");
+        CTSDBTABLE2_LIST_PROJECTION_MAP.put("key", "key");
+        CTSDBTABLE2_LIST_PROJECTION_MAP.put("value", "value");
+    }
+
     @Override
     public boolean onCreate() {
-        mOpenHelper = new DatabaseHelper(getContext());
+        mOpenHelper = new DatabaseHelper(getContext(), mDbName);
+        if (android.provider.Settings.System.getInt(getContext().getContentResolver(),
+                "__cts_crash_on_launch", 0) != 0) {
+            // The test case wants us to crash our process on first launch.
+            // Well, okay then!
+            Log.i("MockContentProvider", "TEST IS CRASHING SELF, CROSS FINGERS!");
+            android.provider.Settings.System.putInt(getContext().getContentResolver(),
+                    "__cts_crash_on_launch", 0);
+            android.os.Process.killProcess(android.os.Process.myPid());
+        }
         return true;
     }
 
@@ -110,6 +163,12 @@
                     (!TextUtils.isEmpty(selection) ? " AND (" + selection + ')' : ""),
                     selectionArgs);
             break;
+        case SELF_ID:
+            // Wha...?  Delete ME?!?  O.K.!
+            Log.i("MockContentProvider", "Delete self requested!");
+            count = 1;
+            android.os.Process.killProcess(android.os.Process.myPid());
+            break;
         default:
             throw new IllegalArgumentException("Unknown URL " + uri);
         }
@@ -155,11 +214,11 @@
         switch (URL_MATCHER.match(uri)) {
         case TESTTABLE1:
             table = "TestTable1";
-            testUri = Uri.parse("content://" + AUTHORITY + "/testtable1");
+            testUri = Uri.parse("content://" + mAuthority + "/testtable1");
             break;
         case TESTTABLE2:
             table = "TestTable2";
-            testUri = Uri.parse("content://" + AUTHORITY + "/testtable2");
+            testUri = Uri.parse("content://" + mAuthority + "/testtable2");
             break;
         default:
             throw new IllegalArgumentException("Unknown URL " + uri);
@@ -217,6 +276,20 @@
             qb.appendWhere("_id=" + uri.getPathSegments().get(1));
             break;
 
+        case CRASH_ID:
+            if (android.provider.Settings.System.getInt(getContext().getContentResolver(),
+                    "__cts_crash_on_launch", 0) != 0) {
+                // The test case wants us to crash while querying.
+                // Well, okay then!
+                Log.i("MockContentProvider", "TEST IS CRASHING SELF, CROSS FINGERS!");
+                android.provider.Settings.System.putInt(getContext().getContentResolver(),
+                        "__cts_crash_on_launch", 0);
+                android.os.Process.killProcess(android.os.Process.myPid());
+            }
+            qb.setTables("TestTable1");
+            qb.setProjectionMap(CTSDBTABLE1_LIST_PROJECTION_MAP);
+            break;
+
         default:
             throw new IllegalArgumentException("Unknown URL " + uri);
         }
@@ -274,22 +347,71 @@
         return count;
     }
 
-    static {
-        URL_MATCHER = new UriMatcher(UriMatcher.NO_MATCH);
-        URL_MATCHER.addURI(AUTHORITY, "testtable1", TESTTABLE1);
-        URL_MATCHER.addURI(AUTHORITY, "testtable1/#", TESTTABLE1_ID);
-        URL_MATCHER.addURI(AUTHORITY, "testtable1/cross", TESTTABLE1_CROSS);
-        URL_MATCHER.addURI(AUTHORITY, "testtable2", TESTTABLE2);
-        URL_MATCHER.addURI(AUTHORITY, "testtable2/#", TESTTABLE2_ID);
+    @Override
+    public AssetFileDescriptor openAssetFile(Uri uri, String mode) throws FileNotFoundException {
+        switch (URL_MATCHER.match(uri)) {
+            case CRASH_ID:
+                if (android.provider.Settings.System.getInt(getContext().getContentResolver(),
+                        "__cts_crash_on_launch", 0) != 0) {
+                    // The test case wants us to crash while querying.
+                    // Well, okay then!
+                    Log.i("MockContentProvider", "TEST IS CRASHING SELF, CROSS FINGERS!");
+                    android.provider.Settings.System.putInt(getContext().getContentResolver(),
+                            "__cts_crash_on_launch", 0);
+                    android.os.Process.killProcess(android.os.Process.myPid());
+                }
+                return new AssetFileDescriptor(
+                        openPipeHelper(uri, null, null,
+                                "This is the openAssetFile test data!", this), 0,
+                        AssetFileDescriptor.UNKNOWN_LENGTH);
 
-        CTSDBTABLE1_LIST_PROJECTION_MAP = new HashMap<String, String>();
-        CTSDBTABLE1_LIST_PROJECTION_MAP.put("_id", "_id");
-        CTSDBTABLE1_LIST_PROJECTION_MAP.put("key", "key");
-        CTSDBTABLE1_LIST_PROJECTION_MAP.put("value", "value");
+            default:
+                return super.openAssetFile(uri, mode);
+        }
+    }
 
-        CTSDBTABLE2_LIST_PROJECTION_MAP = new HashMap<String, String>();
-        CTSDBTABLE2_LIST_PROJECTION_MAP.put("_id", "_id");
-        CTSDBTABLE2_LIST_PROJECTION_MAP.put("key", "key");
-        CTSDBTABLE2_LIST_PROJECTION_MAP.put("value", "value");
+    @Override
+    public AssetFileDescriptor openTypedAssetFile(Uri uri, String mimeTypeFilter, Bundle opts)
+            throws FileNotFoundException {
+        switch (URL_MATCHER.match(uri)) {
+            case CRASH_ID:
+                if (android.provider.Settings.System.getInt(getContext().getContentResolver(),
+                        "__cts_crash_on_launch", 0) != 0) {
+                    // The test case wants us to crash while querying.
+                    // Well, okay then!
+                    Log.i("MockContentProvider", "TEST IS CRASHING SELF, CROSS FINGERS!");
+                    android.provider.Settings.System.putInt(getContext().getContentResolver(),
+                            "__cts_crash_on_launch", 0);
+                    android.os.Process.killProcess(android.os.Process.myPid());
+                }
+                return new AssetFileDescriptor(
+                        openPipeHelper(uri, null, null,
+                                "This is the openTypedAssetFile test data!", this), 0,
+                        AssetFileDescriptor.UNKNOWN_LENGTH);
+
+            default:
+                return super.openTypedAssetFile(uri, mimeTypeFilter, opts);
+        }
+    }
+
+    @Override
+    public void writeDataToPipe(ParcelFileDescriptor output, Uri uri, String mimeType, Bundle opts,
+            String args) {
+        FileOutputStream fout = new FileOutputStream(output.getFileDescriptor());
+        PrintWriter pw = null;
+        try {
+            pw = new PrintWriter(new OutputStreamWriter(fout, "UTF-8"));
+            pw.print(args);
+        } catch (UnsupportedEncodingException e) {
+            Log.w("MockContentProvider", "Ooops", e);
+        } finally {
+            if (pw != null) {
+                pw.flush();
+            }
+            try {
+                fout.close();
+            } catch (IOException e) {
+            }
+        }
     }
 }
diff --git a/tests/src/android/content/cts/MockRemoteContentProvider.java b/tests/src/android/content/cts/MockRemoteContentProvider.java
new file mode 100644
index 0000000..fc43701
--- /dev/null
+++ b/tests/src/android/content/cts/MockRemoteContentProvider.java
@@ -0,0 +1,23 @@
+/*
+ * 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.
+ */
+
+package android.content.cts;
+
+public class MockRemoteContentProvider extends MockContentProvider {
+    public MockRemoteContentProvider() {
+        super("remotectstest", "remotectstest.db");
+    }
+}
diff --git a/tests/tests/accessibilityservice/res/values/strings.xml b/tests/tests/accessibilityservice/res/values/strings.xml
index 16ad575..d022ce3 100644
--- a/tests/tests/accessibilityservice/res/values/strings.xml
+++ b/tests/tests/accessibilityservice/res/values/strings.xml
@@ -136,8 +136,7 @@
         computers. It is developed by the Open Handset Alliance, led by Google, and other companies.
         Google purchased the initial developer of the software, Android Inc., in 2005. The
         unveiling of the Android distribution in 2007 was announced with the founding of the Open
-        Handset Alliance, a consortium of 86 hardware, software, and telecommunication companies
-        devoted to advancing open </string>
+        Handset Alliance, a consortium of 86 hardware, software, and telecommunication </string>
 
     <string name="a_b">A B</string>
 
diff --git a/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/AccessibilityTextTraversalTest.java b/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/AccessibilityTextTraversalTest.java
index 0bc59f8..21c0271 100644
--- a/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/AccessibilityTextTraversalTest.java
+++ b/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/AccessibilityTextTraversalTest.java
@@ -50,7 +50,6 @@
     @MediumTest
     public void testActionNextAndPreviousAtGranularityCharacterOverContentDescription()
             throws Exception {
-
         final View view = getActivity().findViewById(R.id.view);
 
         getInstrumentation().runOnMainSync(new Runnable() {
@@ -167,36 +166,6 @@
                 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Move to the next character and wait for an event.
-        AccessibilityEvent fourthExpected = getInteractionBridge()
-                .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
-            @Override
-            public void run() {
-                getInteractionBridge().performAction(text,
-                        AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments);
-            }
-        }, new AccessibilityEventFilter() {
-            @Override
-            public boolean accept(AccessibilityEvent event) {
-                return
-                (event.getEventType() ==
-                    AccessibilityEvent.TYPE_VIEW_TEXT_TRAVERSED_AT_MOVEMENT_GRANULARITY
-                        && event.getAction() ==
-                            AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY
-                        && event.getPackageName().equals(getActivity().getPackageName())
-                        && event.getClassName().equals(View.class.getName())
-                        && event.getContentDescription().toString().equals(
-                                getString(R.string.a_b))
-                        && event.getFromIndex() == 2
-                        && event.getToIndex() == 3
-                        && event.getMovementGranularity() ==
-                            AccessibilityNodeInfo.MOVEMENT_GRANULARITY_CHARACTER);
-            }
-        }, TIMEOUT_ASYNC_PROCESSING);
-
-        // Make sure we got the expected event.
-        assertNotNull(fourthExpected);
-
-        // Move to the next character and wait for an event.
         AccessibilityEvent fifthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -531,8 +500,8 @@
         assertNotNull(firstExpected);
 
         // Verify the selection position.
-        assertEquals(0, Selection.getSelectionStart(textView.getText()));
-        assertEquals(0, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(1, Selection.getSelectionStart(textView.getText()));
+        assertEquals(1, Selection.getSelectionEnd(textView.getText()));
 
         // Move to the next character and wait for an event.
         AccessibilityEvent secondExpected = getInteractionBridge()
@@ -565,8 +534,8 @@
         assertNotNull(secondExpected);
 
         // Verify the selection position.
-        assertEquals(1, Selection.getSelectionStart(textView.getText()));
-        assertEquals(1, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(2, Selection.getSelectionStart(textView.getText()));
+        assertEquals(2, Selection.getSelectionEnd(textView.getText()));
 
         // Move to the next character and wait for an event.
         AccessibilityEvent thirdExpected = getInteractionBridge()
@@ -599,48 +568,14 @@
         assertNotNull(thirdExpected);
 
         // Verify the selection position.
-        assertEquals(2, Selection.getSelectionStart(textView.getText()));
-        assertEquals(2, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(3, Selection.getSelectionStart(textView.getText()));
+        assertEquals(3, Selection.getSelectionEnd(textView.getText()));
 
         // Make sure there is no next.
         assertFalse(getInteractionBridge().performAction(text,
                 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(textView.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(textView.getText()));
-
-        // Move to the next character and wait for an event.
-        AccessibilityEvent fourthExpected = getInteractionBridge()
-                .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
-            @Override
-            public void run() {
-                getInteractionBridge().performAction(text,
-                        AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments);
-            }
-        }, new AccessibilityEventFilter() {
-            @Override
-            public boolean accept(AccessibilityEvent event) {
-                return
-                (event.getEventType() ==
-                    AccessibilityEvent.TYPE_VIEW_TEXT_TRAVERSED_AT_MOVEMENT_GRANULARITY
-                        && event.getAction() ==
-                            AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY
-                        && event.getPackageName().equals(getActivity().getPackageName())
-                        && event.getClassName().equals(TextView.class.getName())
-                        && event.getText().size() > 0
-                        && event.getText().get(0).toString().equals(getString(R.string.a_b))
-                        && event.getFromIndex() == 2
-                        && event.getToIndex() == 3
-                        && event.getMovementGranularity() ==
-                            AccessibilityNodeInfo.MOVEMENT_GRANULARITY_CHARACTER);
-            }
-        }, TIMEOUT_ASYNC_PROCESSING);
-
-        // Make sure we got the expected event.
-        assertNotNull(fourthExpected);
-
-        // Verify the selection position.
         assertEquals(3, Selection.getSelectionStart(textView.getText()));
         assertEquals(3, Selection.getSelectionEnd(textView.getText()));
 
@@ -717,8 +652,8 @@
                 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(textView.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(1, Selection.getSelectionStart(textView.getText()));
+        assertEquals(1, Selection.getSelectionEnd(textView.getText()));
     }
 
     @MediumTest
@@ -746,7 +681,7 @@
         arguments.putInt(AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT,
                 AccessibilityNodeInfo.MOVEMENT_GRANULARITY_WORD);
 
-        // Move to the next character and wait for an event.
+        // Move to the next word and wait for an event.
         AccessibilityEvent firstExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -777,10 +712,10 @@
         assertNotNull(firstExpected);
 
         // Verify the selection position.
-        assertEquals(0, Selection.getSelectionStart(textView.getText()));
-        assertEquals(0, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(3, Selection.getSelectionStart(textView.getText()));
+        assertEquals(3, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next word and wait for an event.
         AccessibilityEvent secondExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -811,10 +746,10 @@
         assertNotNull(secondExpected);
 
         // Verify the selection position.
-        assertEquals(4, Selection.getSelectionStart(textView.getText()));
-        assertEquals(4, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(7, Selection.getSelectionStart(textView.getText()));
+        assertEquals(7, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next word and wait for an event.
         AccessibilityEvent thirdExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -845,18 +780,18 @@
         assertNotNull(thirdExpected);
 
         // Verify the selection position.
-        assertEquals(8, Selection.getSelectionStart(textView.getText()));
-        assertEquals(8, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(11, Selection.getSelectionStart(textView.getText()));
+        assertEquals(11, Selection.getSelectionEnd(textView.getText()));
 
         // Make sure there is no next.
         assertFalse(getInteractionBridge().performAction(text,
                 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(textView.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(11, Selection.getSelectionStart(textView.getText()));
+        assertEquals(11, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next word and wait for an event.
         AccessibilityEvent fourthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -887,10 +822,10 @@
         assertNotNull(fourthExpected);
 
         // Verify the selection position.
-        assertEquals(11, Selection.getSelectionStart(textView.getText()));
-        assertEquals(11, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(8, Selection.getSelectionStart(textView.getText()));
+        assertEquals(8, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next word and wait for an event.
         AccessibilityEvent fifthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -921,8 +856,8 @@
         assertNotNull(fifthExpected);
 
         // Verify the selection position.
-        assertEquals(7, Selection.getSelectionStart(textView.getText()));
-        assertEquals(7, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(4, Selection.getSelectionStart(textView.getText()));
+        assertEquals(4, Selection.getSelectionEnd(textView.getText()));
 
         // Move to the next character and wait for an event.
         AccessibilityEvent sixthExpected = getInteractionBridge()
@@ -955,16 +890,16 @@
         assertNotNull(sixthExpected);
 
         // Verify the selection position.
-        assertEquals(3, Selection.getSelectionStart(textView.getText()));
-        assertEquals(3, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(0, Selection.getSelectionStart(textView.getText()));
+        assertEquals(0, Selection.getSelectionEnd(textView.getText()));
 
         // Make sure there is no previous.
         assertFalse(getInteractionBridge().performAction(text,
                 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(textView.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(0, Selection.getSelectionStart(textView.getText()));
+        assertEquals(0, Selection.getSelectionEnd(textView.getText()));
     }
 
     @MediumTest
@@ -992,7 +927,7 @@
         arguments.putInt(AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT,
                 AccessibilityNodeInfo.MOVEMENT_GRANULARITY_LINE);
 
-        // Move to the next character and wait for an event.
+        // Move to the next line and wait for an event.
         AccessibilityEvent firstExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1024,10 +959,10 @@
         assertNotNull(firstExpected);
 
         // Verify the selection position.
-        assertEquals(0, Selection.getSelectionStart(textView.getText()));
-        assertEquals(0, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(25, Selection.getSelectionStart(textView.getText()));
+        assertEquals(25, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next line and wait for an event.
         AccessibilityEvent secondExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1059,10 +994,10 @@
         assertNotNull(secondExpected);
 
         // Verify the selection position.
-        assertEquals(25, Selection.getSelectionStart(textView.getText()));
-        assertEquals(25, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(53, Selection.getSelectionStart(textView.getText()));
+        assertEquals(53, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next line and wait for an event.
         AccessibilityEvent thirdExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1094,18 +1029,18 @@
         assertNotNull(thirdExpected);
 
         // Verify the selection position.
-        assertEquals(53, Selection.getSelectionStart(textView.getText()));
-        assertEquals(53, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(60, Selection.getSelectionStart(textView.getText()));
+        assertEquals(60, Selection.getSelectionEnd(textView.getText()));
 
         // Make sure there is no next.
         assertFalse(getInteractionBridge().performAction(text,
                 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(textView.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(60, Selection.getSelectionStart(textView.getText()));
+        assertEquals(60, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the previous line and wait for an event.
         AccessibilityEvent fourthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1137,10 +1072,10 @@
         assertNotNull(fourthExpected);
 
         // Verify the selection position.
-        assertEquals(60, Selection.getSelectionStart(textView.getText()));
-        assertEquals(60, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(53, Selection.getSelectionStart(textView.getText()));
+        assertEquals(53, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the previous line and wait for an event.
         AccessibilityEvent fifthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1172,10 +1107,10 @@
         assertNotNull(fifthExpected);
 
         // Verify the selection position.
-        assertEquals(53, Selection.getSelectionStart(textView.getText()));
-        assertEquals(53, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(25, Selection.getSelectionStart(textView.getText()));
+        assertEquals(25, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the previous line and wait for an event.
         AccessibilityEvent sixthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1207,16 +1142,16 @@
         assertNotNull(sixthExpected);
 
         // Verify the selection position.
-        assertEquals(25, Selection.getSelectionStart(textView.getText()));
-        assertEquals(25, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(0, Selection.getSelectionStart(textView.getText()));
+        assertEquals(0, Selection.getSelectionEnd(textView.getText()));
 
         // Make sure there is no previous.
         assertFalse(getInteractionBridge().performAction(text,
                 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(textView.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(0, Selection.getSelectionStart(textView.getText()));
+        assertEquals(0, Selection.getSelectionEnd(textView.getText()));
     }
 
     @MediumTest
@@ -1245,7 +1180,7 @@
         arguments.putInt(AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT,
                 AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PAGE);
 
-        // Move to the next character and wait for an event.
+        // Move to the next page and wait for an event.
         AccessibilityEvent firstExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1267,7 +1202,7 @@
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki))
                         && event.getFromIndex() == 0
-                        && event.getToIndex() == 156
+                        && event.getToIndex() == 139
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PAGE);
             }
@@ -1277,10 +1212,10 @@
         assertNotNull(firstExpected);
 
         // Verify the selection position.
-        assertEquals(0, Selection.getSelectionStart(editText.getText()));
-        assertEquals(0, Selection.getSelectionEnd(editText.getText()));
+        assertEquals(139, Selection.getSelectionStart(editText.getText()));
+        assertEquals(139, Selection.getSelectionEnd(editText.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next page and wait for an event.
         AccessibilityEvent secondExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1301,8 +1236,8 @@
                         && event.getText().size() > 0
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki))
-                        && event.getFromIndex() == 156
-                        && event.getToIndex() == 318
+                        && event.getFromIndex() == 139
+                        && event.getToIndex() == 285
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PAGE);
             }
@@ -1312,10 +1247,10 @@
         assertNotNull(secondExpected);
 
         // Verify the selection position.
-        assertEquals(156, Selection.getSelectionStart(editText.getText()));
-        assertEquals(156, Selection.getSelectionEnd(editText.getText()));
+        assertEquals(285, Selection.getSelectionStart(editText.getText()));
+        assertEquals(285, Selection.getSelectionEnd(editText.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next page and wait for an event.
         AccessibilityEvent thirdExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1336,8 +1271,8 @@
                         && event.getText().size() > 0
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki))
-                        && event.getFromIndex() == 318
-                        && event.getToIndex() == 472
+                        && event.getFromIndex() == 285
+                        && event.getToIndex() == 436
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PAGE);
             }
@@ -1347,18 +1282,18 @@
         assertNotNull(thirdExpected);
 
         // Verify the selection position.
-        assertEquals(318, Selection.getSelectionStart(editText.getText()));
-        assertEquals(318, Selection.getSelectionEnd(editText.getText()));
+        assertEquals(436, Selection.getSelectionStart(editText.getText()));
+        assertEquals(436, Selection.getSelectionEnd(editText.getText()));
 
         // Make sure there is no next.
         assertFalse(getInteractionBridge().performAction(text,
                 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(editText.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(editText.getText()));
+        assertEquals(436, Selection.getSelectionStart(editText.getText()));
+        assertEquals(436, Selection.getSelectionEnd(editText.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the previous page and wait for an event.
         AccessibilityEvent fourthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1379,8 +1314,8 @@
                         && event.getText().size() > 0
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki))
-                        && event.getFromIndex() == 318
-                        && event.getToIndex() == 472
+                        && event.getFromIndex() == 285
+                        && event.getToIndex() == 436
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PAGE);
             }
@@ -1390,10 +1325,10 @@
         assertNotNull(fourthExpected);
 
         // Verify the selection position.
-        assertEquals(472, Selection.getSelectionStart(editText.getText()));
-        assertEquals(472, Selection.getSelectionEnd(editText.getText()));
+        assertEquals(285, Selection.getSelectionStart(editText.getText()));
+        assertEquals(285, Selection.getSelectionEnd(editText.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the previous page and wait for an event.
         AccessibilityEvent fifthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1414,8 +1349,8 @@
                         && event.getText().size() > 0
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki))
-                        && event.getFromIndex() == 156
-                        && event.getToIndex() == 318
+                        && event.getFromIndex() == 139
+                        && event.getToIndex() == 285
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PAGE);
             }
@@ -1425,10 +1360,10 @@
         assertNotNull(fifthExpected);
 
         // Verify the selection position.
-        assertEquals(318, Selection.getSelectionStart(editText.getText()));
-        assertEquals(318, Selection.getSelectionEnd(editText.getText()));
+        assertEquals(139, Selection.getSelectionStart(editText.getText()));
+        assertEquals(139, Selection.getSelectionEnd(editText.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the previous page and wait for an event.
         AccessibilityEvent sixthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1450,7 +1385,7 @@
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki))
                         && event.getFromIndex() == 0
-                        && event.getToIndex() == 156
+                        && event.getToIndex() == 139
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PAGE);
             }
@@ -1460,16 +1395,16 @@
         assertNotNull(sixthExpected);
 
         // Verify the selection position.
-        assertEquals(156, Selection.getSelectionStart(editText.getText()));
-        assertEquals(156, Selection.getSelectionEnd(editText.getText()));
+        assertEquals(0, Selection.getSelectionStart(editText.getText()));
+        assertEquals(0, Selection.getSelectionEnd(editText.getText()));
 
         // Make sure there is no previous.
         assertFalse(getInteractionBridge().performAction(text,
                 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(editText.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(editText.getText()));
+        assertEquals(0, Selection.getSelectionStart(editText.getText()));
+        assertEquals(0, Selection.getSelectionEnd(editText.getText()));
     }
 
     @MediumTest
@@ -1497,7 +1432,7 @@
         arguments.putInt(AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT,
                 AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH);
 
-        // Move to the next character and wait for an event.
+        // Move to the next paragraph and wait for an event.
         AccessibilityEvent firstExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1519,7 +1454,7 @@
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki_paragraphs))
                         && event.getFromIndex() == 2
-                        && event.getToIndex() == 106
+                        && event.getToIndex() == 104
                         && event.getMovementGranularity()
                             == AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH);
             }
@@ -1529,10 +1464,10 @@
         assertNotNull(firstExpected);
 
         // Verify the selection position.
-        assertEquals(2, Selection.getSelectionStart(textView.getText()));
-        assertEquals(2, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(104, Selection.getSelectionStart(textView.getText()));
+        assertEquals(104, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next paragraph and wait for an event.
         AccessibilityEvent secondExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1554,7 +1489,7 @@
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki_paragraphs))
                         && event.getFromIndex() == 106
-                        && event.getToIndex() == 268
+                        && event.getToIndex() == 267
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH);
             }
@@ -1564,10 +1499,10 @@
         assertNotNull(secondExpected);
 
         // Verify the selection position.
-        assertEquals(106, Selection.getSelectionStart(textView.getText()));
-        assertEquals(106, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(267, Selection.getSelectionStart(textView.getText()));
+        assertEquals(267, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the next paragraph and wait for an event.
         AccessibilityEvent thirdExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1589,7 +1524,7 @@
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki_paragraphs))
                         && event.getFromIndex() == 268
-                        && event.getToIndex() == 584
+                        && event.getToIndex() == 582
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH);
             }
@@ -1599,18 +1534,18 @@
         assertNotNull(thirdExpected);
 
         // Verify the selection position.
-        assertEquals(268, Selection.getSelectionStart(textView.getText()));
-        assertEquals(268, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(582, Selection.getSelectionStart(textView.getText()));
+        assertEquals(582, Selection.getSelectionEnd(textView.getText()));
 
         // Make sure there is no next.
         assertFalse(getInteractionBridge().performAction(text,
                 AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(textView.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(582, Selection.getSelectionStart(textView.getText()));
+        assertEquals(582, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the previous paragraph and wait for an event.
         AccessibilityEvent fourthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1632,7 +1567,7 @@
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki_paragraphs))
                         && event.getFromIndex() == 268
-                        && event.getToIndex() == 584
+                        && event.getToIndex() == 582
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH);
             }
@@ -1642,10 +1577,10 @@
         assertNotNull(fourthExpected);
 
         // Verify the selection position.
-        assertEquals(584, Selection.getSelectionStart(textView.getText()));
-        assertEquals(584, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(268, Selection.getSelectionStart(textView.getText()));
+        assertEquals(268, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the previous paragraph and wait for an event.
         AccessibilityEvent fifthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1667,7 +1602,7 @@
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki_paragraphs))
                         && event.getFromIndex() == 106
-                        && event.getToIndex() == 268
+                        && event.getToIndex() == 267
                         && event.getMovementGranularity() ==
                             AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH);
             }
@@ -1677,10 +1612,10 @@
         assertNotNull(fifthExpected);
 
         // Verify the selection position.
-        assertEquals(268, Selection.getSelectionStart(textView.getText()));
-        assertEquals(268, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(106, Selection.getSelectionStart(textView.getText()));
+        assertEquals(106, Selection.getSelectionEnd(textView.getText()));
 
-        // Move to the next character and wait for an event.
+        // Move to the previous paragraph and wait for an event.
         AccessibilityEvent sixthExpected = getInteractionBridge()
                 .executeCommandAndWaitForAccessibilityEvent(new Runnable() {
             @Override
@@ -1702,7 +1637,7 @@
                         && event.getText().get(0).toString().equals(getString(
                                 R.string.android_wiki_paragraphs))
                         && event.getFromIndex() == 2
-                        && event.getToIndex() == 106
+                        && event.getToIndex() == 104
                         && event.getMovementGranularity()
                                 == AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH);
             }
@@ -1712,15 +1647,15 @@
         assertNotNull(sixthExpected);
 
         // Verify the selection position.
-        assertEquals(106, Selection.getSelectionStart(textView.getText()));
-        assertEquals(106, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(2, Selection.getSelectionStart(textView.getText()));
+        assertEquals(2, Selection.getSelectionEnd(textView.getText()));
 
         // Make sure there is no previous.
         assertFalse(getInteractionBridge().performAction(text,
                 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments));
 
         // Verify the selection position.
-        assertEquals(-1, Selection.getSelectionStart(textView.getText()));
-        assertEquals(-1, Selection.getSelectionEnd(textView.getText()));
+        assertEquals(2, Selection.getSelectionStart(textView.getText()));
+        assertEquals(2, Selection.getSelectionEnd(textView.getText()));
     }
 }
diff --git a/tests/tests/content/src/android/content/cts/ContentResolverTest.java b/tests/tests/content/src/android/content/cts/ContentResolverTest.java
index 3276c8e..22c2faa 100644
--- a/tests/tests/content/src/android/content/cts/ContentResolverTest.java
+++ b/tests/tests/content/src/android/content/cts/ContentResolverTest.java
@@ -20,6 +20,7 @@
 
 
 import android.accounts.Account;
+import android.content.ContentProviderClient;
 import android.content.ContentResolver;
 import android.content.ContentValues;
 import android.content.Context;
@@ -33,11 +34,15 @@
 import android.os.CancellationSignal;
 import android.os.OperationCanceledException;
 import android.os.ParcelFileDescriptor;
+import android.os.RemoteException;
 import android.test.AndroidTestCase;
+import android.util.Log;
 
+import java.io.FileInputStream;
 import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.io.InputStream;
+import java.io.InputStreamReader;
 import java.io.OutputStream;
 
 public class ContentResolverTest extends AndroidTestCase {
@@ -50,6 +55,16 @@
     private static final Uri TABLE1_CROSS_URI =
             Uri.parse("content://" + AUTHORITY + "/testtable1/cross");
     private static final Uri TABLE2_URI = Uri.parse("content://" + AUTHORITY + "/testtable2/");
+    private static final Uri SELF_URI = Uri.parse("content://" + AUTHORITY + "/self/");
+    private static final Uri CRASH_URI = Uri.parse("content://" + AUTHORITY + "/crash/");
+
+    private static final String REMOTE_AUTHORITY = "remotectstest";
+    private static final Uri REMOTE_TABLE1_URI = Uri.parse("content://"
+                + REMOTE_AUTHORITY + "/testtable1/");
+    private static final Uri REMOTE_SELF_URI = Uri.parse("content://"
+                + REMOTE_AUTHORITY + "/self/");
+    private static final Uri REMOTE_CRASH_URI = Uri.parse("content://"
+            + REMOTE_AUTHORITY + "/crash/");
 
     private static final Account ACCOUNT = new Account("cts", "cts");
 
@@ -73,20 +88,25 @@
         mContext = getContext();
         mContentResolver = mContext.getContentResolver();
 
+        android.provider.Settings.System.putInt(mContentResolver, "__cts_crash_on_launch", 0);
+
         // add three rows to database when every test case start.
         ContentValues values = new ContentValues();
 
         values.put(COLUMN_KEY_NAME, KEY1);
         values.put(COLUMN_VALUE_NAME, VALUE1);
         mContentResolver.insert(TABLE1_URI, values);
+        mContentResolver.insert(REMOTE_TABLE1_URI, values);
 
         values.put(COLUMN_KEY_NAME, KEY2);
         values.put(COLUMN_VALUE_NAME, VALUE2);
         mContentResolver.insert(TABLE1_URI, values);
+        mContentResolver.insert(REMOTE_TABLE1_URI, values);
 
         values.put(COLUMN_KEY_NAME, KEY3);
         values.put(COLUMN_VALUE_NAME, VALUE3);
         mContentResolver.insert(TABLE1_URI, values);
+        mContentResolver.insert(REMOTE_TABLE1_URI, values);
     }
 
     @Override
@@ -95,6 +115,10 @@
         if ( null != mCursor && !mCursor.isClosed() ) {
             mCursor.close();
         }
+        mContentResolver.delete(REMOTE_TABLE1_URI, null, null);
+        if ( null != mCursor && !mCursor.isClosed() ) {
+            mCursor.close();
+        }
         super.tearDown();
     }
 
@@ -102,6 +126,125 @@
         assertNotNull(mContentResolver);
     }
 
+    public void testCrashOnLaunch() {
+        // This test is going to make sure that the platform deals correctly
+        // with a content provider process going away while a client is waiting
+        // for it to come up.
+        // First, we need to make sure our provider process is gone.  Goodbye!
+        ContentProviderClient client = mContentResolver.acquireContentProviderClient(
+                REMOTE_AUTHORITY);
+        // We are going to do something wrong here...  release the client first,
+        // so the act of killing it doesn't kill our own process.
+        client.release();
+        try {
+            client.delete(REMOTE_SELF_URI, null, null);
+        } catch (RemoteException e) {
+        }
+        // Now make sure the thing is actually gone.
+        boolean gone = true;
+        try {
+            client.getType(REMOTE_TABLE1_URI);
+            gone = false;
+        } catch (RemoteException e) {
+        }
+        if (!gone) {
+            fail("Content provider process is not gone!");
+        }
+        try {
+            android.provider.Settings.System.putInt(mContentResolver, "__cts_crash_on_launch", 1);
+            String type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
+            assertEquals(android.provider.Settings.System.getInt(mContentResolver,
+                "__cts_crash_on_launch", 0), 0);
+            assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
+        } finally {
+            android.provider.Settings.System.putInt(mContentResolver, "__cts_crash_on_launch", 0);
+        }
+    }
+
+    public void testUnstableToStableRefs() {
+        // Get an unstable refrence on the remote content provider.
+        ContentProviderClient uClient = mContentResolver.acquireUnstableContentProviderClient(
+                REMOTE_AUTHORITY);
+        // Verify we can access it.
+        String type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
+        assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
+
+        // Get a stable reference on the remote content provider.
+        ContentProviderClient sClient = mContentResolver.acquireContentProviderClient(
+                REMOTE_AUTHORITY);
+        // Verify we can still access it.
+        type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
+        assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
+
+        // Release unstable reference.
+        uClient.release();
+        // Verify we can still access it.
+        type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
+        assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
+
+        // Release stable reference, removing last ref.
+        sClient.release();
+        // Kill it.  Note that a bug at this point where it causes our own
+        // process to be killed will result in the entire test failing.
+        try {
+            Log.i("ContentResolverTest",
+                    "Killing remote client -- if test process goes away, that is why!");
+            uClient.delete(REMOTE_SELF_URI, null, null);
+        } catch (RemoteException e) {
+        }
+        // Make sure the remote client is actually gone.
+        boolean gone = true;
+        try {
+            sClient.getType(REMOTE_TABLE1_URI);
+            gone = false;
+        } catch (RemoteException e) {
+        }
+        if (!gone) {
+            fail("Content provider process is not gone!");
+        }
+    }
+
+    public void testStableToUnstableRefs() {
+        // Get a stable reference on the remote content provider.
+        ContentProviderClient sClient = mContentResolver.acquireContentProviderClient(
+                REMOTE_AUTHORITY);
+        // Verify we can still access it.
+        String type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
+        assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
+        
+        // Get an unstable refrence on the remote content provider.
+        ContentProviderClient uClient = mContentResolver.acquireUnstableContentProviderClient(
+                REMOTE_AUTHORITY);
+        // Verify we can access it.
+        type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
+        assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
+
+        // Release stable reference, leaving only an unstable ref.
+        sClient.release();
+
+        // Kill it.  Note that a bug at this point where it causes our own
+        // process to be killed will result in the entire test failing.
+        try {
+            Log.i("ContentResolverTest",
+                    "Killing remote client -- if test process goes away, that is why!");
+            uClient.delete(REMOTE_SELF_URI, null, null);
+        } catch (RemoteException e) {
+        }
+        // Make sure the remote client is actually gone.
+        boolean gone = true;
+        try {
+            uClient.getType(REMOTE_TABLE1_URI);
+            gone = false;
+        } catch (RemoteException e) {
+        }
+        if (!gone) {
+            fail("Content provider process is not gone!");
+        }
+
+        // Release unstable reference.
+        uClient.release();
+    }
+
     public void testGetType() {
         String type1 = mContentResolver.getType(TABLE1_URI);
         assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
@@ -120,6 +263,43 @@
         }
     }
 
+    public void testUnstableGetType() {
+        // Get an unstable refrence on the remote content provider.
+        ContentProviderClient client = mContentResolver.acquireUnstableContentProviderClient(
+                REMOTE_AUTHORITY);
+        // Verify we can access it.
+        String type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
+        assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
+
+        // Kill it.  Note that a bug at this point where it causes our own
+        // process to be killed will result in the entire test failing.
+        try {
+            Log.i("ContentResolverTest",
+                    "Killing remote client -- if test process goes away, that is why!");
+            client.delete(REMOTE_SELF_URI, null, null);
+        } catch (RemoteException e) {
+        }
+        // Make sure the remote client is actually gone.
+        boolean gone = true;
+        try {
+            client.getType(REMOTE_TABLE1_URI);
+            gone = false;
+        } catch (RemoteException e) {
+        }
+        if (!gone) {
+            fail("Content provider process is not gone!");
+        }
+
+        // Now the remote client is gone, can we recover?
+        // Release our old reference.
+        client.release();
+        // Get a new reference.
+        client = mContentResolver.acquireUnstableContentProviderClient(REMOTE_AUTHORITY);
+        // Verify we can access it.
+        type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
+        assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
+    }
+
     public void testQuery() {
         mCursor = mContentResolver.query(TABLE1_URI, null, null, null, null);
 
@@ -170,6 +350,32 @@
         }
     }
 
+    public void testCrashingQuery() {
+        try {
+            android.provider.Settings.System.putInt(mContentResolver, "__cts_crash_on_launch", 1);
+            mCursor = mContentResolver.query(REMOTE_CRASH_URI, null, null, null, null);
+            assertEquals(android.provider.Settings.System.getInt(mContentResolver,
+                "__cts_crash_on_launch", 0), 0);
+        } finally {
+            android.provider.Settings.System.putInt(mContentResolver, "__cts_crash_on_launch", 0);
+        }
+
+        assertNotNull(mCursor);
+        assertEquals(3, mCursor.getCount());
+        assertEquals(3, mCursor.getColumnCount());
+
+        mCursor.moveToLast();
+        assertEquals(3, mCursor.getInt(mCursor.getColumnIndexOrThrow(COLUMN_ID_NAME)));
+        assertEquals(KEY3, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
+        assertEquals(VALUE3, mCursor.getInt(mCursor.getColumnIndexOrThrow(COLUMN_VALUE_NAME)));
+
+        mCursor.moveToPrevious();
+        assertEquals(2, mCursor.getInt(mCursor.getColumnIndexOrThrow(COLUMN_ID_NAME)));
+        assertEquals(KEY2, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
+        assertEquals(VALUE2, mCursor.getInt(mCursor.getColumnIndexOrThrow(COLUMN_VALUE_NAME)));
+        mCursor.close();
+    }
+
     public void testCancelableQuery_WhenNotCanceled_ReturnsResultSet() {
         CancellationSignal cancellationSignal = new CancellationSignal();
 
@@ -334,6 +540,98 @@
         }
     }
 
+    private String consumeAssetFileDescriptor(AssetFileDescriptor afd)
+            throws IOException {
+        FileInputStream stream = null;
+        try {
+            stream = afd.createInputStream();
+            InputStreamReader reader = new InputStreamReader(stream, "UTF-8");
+
+            // Got it...  copy the stream into a local string and return it.
+            StringBuilder builder = new StringBuilder(128);
+            char[] buffer = new char[8192];
+            int len;
+            while ((len=reader.read(buffer)) > 0) {
+                builder.append(buffer, 0, len);
+            }
+            return builder.toString();
+
+        } finally {
+            if (stream != null) {
+                try {
+                    stream.close();
+                } catch (IOException e) {
+                }
+            }
+        }
+        
+    }
+
+    public void testCrashingOpenAssetFileDescriptor() throws IOException {
+        AssetFileDescriptor afd = null;
+        try {
+            android.provider.Settings.System.putInt(mContentResolver, "__cts_crash_on_launch", 1);
+            afd = mContentResolver.openAssetFileDescriptor(REMOTE_CRASH_URI, "rw");
+            assertEquals(android.provider.Settings.System.getInt(mContentResolver,
+                    "__cts_crash_on_launch", 0), 0);
+            assertNotNull(afd);
+            String str = consumeAssetFileDescriptor(afd);
+            afd = null;
+            assertEquals(str, "This is the openAssetFile test data!");
+        } finally {
+            android.provider.Settings.System.putInt(mContentResolver, "__cts_crash_on_launch", 0);
+            if (afd != null) {
+                afd.close();
+            }
+        }
+
+        // Make sure a content provider crash at this point won't hurt us.
+        ContentProviderClient uClient = mContentResolver.acquireUnstableContentProviderClient(
+                REMOTE_AUTHORITY);
+        // Kill it.  Note that a bug at this point where it causes our own
+        // process to be killed will result in the entire test failing.
+        try {
+            Log.i("ContentResolverTest",
+                    "Killing remote client -- if test process goes away, that is why!");
+            uClient.delete(REMOTE_SELF_URI, null, null);
+        } catch (RemoteException e) {
+        }
+        uClient.release();
+    }
+
+    public void testCrashingOpenTypedAssetFileDescriptor() throws IOException {
+        AssetFileDescriptor afd = null;
+        try {
+            android.provider.Settings.System.putInt(mContentResolver, "__cts_crash_on_launch", 1);
+            afd = mContentResolver.openTypedAssetFileDescriptor(
+                    REMOTE_CRASH_URI, "text/plain", null);
+            assertEquals(android.provider.Settings.System.getInt(mContentResolver,
+                    "__cts_crash_on_launch", 0), 0);
+            assertNotNull(afd);
+            String str = consumeAssetFileDescriptor(afd);
+            afd = null;
+            assertEquals(str, "This is the openTypedAssetFile test data!");
+        } finally {
+            android.provider.Settings.System.putInt(mContentResolver, "__cts_crash_on_launch", 0);
+            if (afd != null) {
+                afd.close();
+            }
+        }
+
+        // Make sure a content provider crash at this point won't hurt us.
+        ContentProviderClient uClient = mContentResolver.acquireUnstableContentProviderClient(
+                REMOTE_AUTHORITY);
+        // Kill it.  Note that a bug at this point where it causes our own
+        // process to be killed will result in the entire test failing.
+        try {
+            Log.i("ContentResolverTest",
+                    "Killing remote client -- if test process goes away, that is why!");
+            uClient.delete(REMOTE_SELF_URI, null, null);
+        } catch (RemoteException e) {
+        }
+        uClient.release();
+    }
+
     public void testOpenFileDescriptor() throws IOException {
         Uri uri = Uri.parse(ContentResolver.SCHEME_FILE + "://" +
                 getContext().getCacheDir().getAbsolutePath() +
diff --git a/tests/tests/hardware/src/android/hardware/cts/CameraTest.java b/tests/tests/hardware/src/android/hardware/cts/CameraTest.java
index d98d296..934e46b 100755
--- a/tests/tests/hardware/src/android/hardware/cts/CameraTest.java
+++ b/tests/tests/hardware/src/android/hardware/cts/CameraTest.java
@@ -2622,6 +2622,16 @@
         for (Face[] faces: listener.mFacesArray) {
             testFaces(faces, maxNumOfFaces, optionalFieldSupported);
         }
+
+        // After taking a picture, face detection should be started again.
+        initializeMessageLooper(cameraId);
+        mCamera.startPreview();
+        mCamera.startFaceDetection();
+        mCamera.takePicture(mShutterCallback, mRawPictureCallback, mJpegPictureCallback);
+        waitForSnapshotDone();
+        mCamera.startPreview();
+        mCamera.startFaceDetection();
+        terminateMessageLooper();
     }
 
     private class FaceListener implements FaceDetectionListener {
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_list.png
deleted file mode 100644
index 19843c2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_multichoice.png
deleted file mode 100644
index 45a8da0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_onebutton.png
deleted file mode 100644
index 7382c6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_singlechoice.png
deleted file mode 100644
index c1e7f2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_threebuttons.png
deleted file mode 100644
index 2c65d33..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_twobuttons.png
deleted file mode 100644
index d8c1bc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png
index 8a2248d..b7cbdbd 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png
index 069a67e..37d0d30 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png
index d7fa13d..c2edee4 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressdialog_horizontal.png
deleted file mode 100644
index cd50fe6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png
index bbdaa9c..1c34052 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png
index e8320ca..8668f5b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png
index a6af51e..5c45a48 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png
index 3b52de7..8ea59ea 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png
index 3e03d50..e07810a 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_list.png
deleted file mode 100644
index aa074c1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
deleted file mode 100644
index 205b855..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
deleted file mode 100644
index 356c230..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
deleted file mode 100644
index 4d0d20c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
deleted file mode 100644
index 33d0641..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
deleted file mode 100644
index 5969402..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png
index 7923142..e1bf3fc 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png
index d94e0ec..cf4a425 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png
index 0891a0b..8e34838 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressdialog_horizontal.png
deleted file mode 100644
index 168b54f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png
index b194d4e..b35f83c 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png
index b89ea7d..0873321 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png
index 3100469..494147b 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png
index 1ead90f..ae05198 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png
index 19d5422..1de6a9d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png
index 4982007..7a986aa 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_zoomcontrols.png
deleted file mode 100644
index 5763406..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_tabhost.png
index a784c34..c1c81c2 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_tabhost.png
index 85881ce..315303c 100644
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview.png
new file mode 100644
index 0000000..3364ae1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_tabhost.png
index 1da3ddf..ccef6cb 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..8d86351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_tabhost.png
index b6e0589..e20f95d 100644
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_tabhost.png
index 592f520..628c7bd 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_tabhost.png
index edd794a..26926a4 100644
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_tabhost.png
index 4a41bfd..3a35bfe 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_tabhost.png
index 748e8e7..f7568bf 100644
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_calendar_view.png
index 884bfc0..078f94c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_calendar_view_feb.png
index fc65b4a..50189cf 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view.png
index 884bfc0..91d673d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view_feb.png
index fc65b4a..4143121 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view.png
index 884bfc0..91d673d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view_feb.png
index fc65b4a..4143121 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view.png
index 884bfc0..078f94c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
index fc65b4a..50189cf 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index 884bfc0..078f94c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index fc65b4a..50189cf 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view.png
index 884bfc0..078f94c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
index fc65b4a..50189cf 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index 884bfc0..03d91e5 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index fc65b4a..735f53a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view.png
index 16deb8f..e50ca0c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view_feb.png
index f27f7d2..e1e3ac0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view.png
index 16deb8f..5778d60 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view_feb.png
index f27f7d2..55113ae 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view.png
index 16deb8f..5778d60 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view_feb.png
index f27f7d2..55113ae 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view.png
index 16deb8f..58454fb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view_feb.png
index f27f7d2..0dad5f9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view.png
index 16deb8f..58454fb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
index f27f7d2..0dad5f9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view.png
index 16deb8f..5778d60 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index f27f7d2..55113ae 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index 16deb8f..5778d60 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index f27f7d2..55113ae 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view.png
index 16deb8f..5778d60 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index f27f7d2..55113ae 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index 16deb8f..e50ca0c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index f27f7d2..e1e3ac0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view.png
index 16deb8f..e50ca0c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view_feb.png
index f27f7d2..e1e3ac0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
index 16deb8f..e50ca0c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index f27f7d2..e1e3ac0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_list.png
deleted file mode 100644
index a06cdd8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_multichoice.png
deleted file mode 100644
index 278e9b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_onebutton.png
deleted file mode 100644
index caaec27..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_singlechoice.png
deleted file mode 100644
index 8be0aa4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_threebuttons.png
deleted file mode 100644
index 7450944..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_twobuttons.png
deleted file mode 100644
index b0eccd5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button.png
index 054d4e5..199a091 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button_pressed.png
index a7a0105..fb8ea1d 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view.png
index 16deb8f..e50ca0c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view_feb.png
index f27f7d2..e1e3ac0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox.png
index 416fc5e..da845bc 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_chronometer.png
index dd8eb6d..c20165a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_0.png
index c89e5f2..c9914b2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_100.png
index 0abda21..f4235b3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_50.png
index b33950b..a01890f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressdialog_horizontal.png
deleted file mode 100644
index 01b7a98..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button.png
index b9c52f4..ea2db29 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button_checked.png
index 5acf60f..bcfc2e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_horizontal.png
index 10af193..2b521cb 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_vertical.png
index ec7dd84..d773327 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query.png
index 89a4ef9..d56c96b 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query_hint.png
index d6121ce..8314ad3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_0.png
index b79d8de..f758a26 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_100.png
index 8e53289..fdc8fa1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_50.png
index 3b7343f..d19d3c9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_spinner.png
index 9cf08d4..3909bf8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_switch.png
index 0bd5809..456deff 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_switch_checked.png
index 8404698..24bfe55 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_tabhost.png
index 61687f6..1df391f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_textview.png
index 5941143..4d77514 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_timepicker.png
index 16bedde..73daef6 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button.png
index 71d5967..8e132a3 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button_checked.png
index 6448695..7538063 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_light_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view.png
index 884bfc0..03d91e5 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view_feb.png
index fc65b4a..735f53a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view.png
index 884bfc0..03d91e5 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index fc65b4a..735f53a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_button_pressed.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 884bfc0..03d91e5 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 fc65b4a..735f53a 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_panel_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view.png
index 884bfc0..078f94c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view_feb.png
index fc65b4a..50189cf 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_list.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_list.png
deleted file mode 100644
index ca60c2f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
deleted file mode 100644
index ef5a620..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
deleted file mode 100644
index 6e67ae0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
deleted file mode 100644
index b66441a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
deleted file mode 100644
index e5c6476..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
deleted file mode 100644
index 65b1d05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
+++ /dev/null
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 354ebd1..8c3f015 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-ldpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button_pressed.png
index 2562c8c..6775ee8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view.png
index 884bfc0..03d91e5 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index fc65b4a..735f53a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox.png
index 58b679e..3ea8db1 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_chronometer.png
index dca49b0..21a1e66 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_chronometer.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
index feaec2c..90c4a73 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
index a8640c1..c380657 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
index ae141af..a93de86 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
index 0ee2324..02f5d83 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_light.png
index 9ca63c5..a7f2181 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
index bc06b4f..08dbae8 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
index 1495f82..8479586 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_purple.png
index 9652f56..92fed2f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
index 4acebf8..b6f3d4a 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_light.png
index d5b5742..3e66453 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_0.png
index 3ab1b88..fc8cd68 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_100.png
index 2ccefc1..f13f626 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_50.png
index 56239e3..65f37e9 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressdialog_horizontal.png
deleted file mode 100644
index c602ac2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button.png
index 96a4af9..896d81f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button_checked.png
index fa14bcb..4c8b53c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_horizontal.png
index 7184016..215214f 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_vertical.png
index b7927b1..dc5bed7 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query.png
index 061f026..df23c85 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query_hint.png
index 34a711e..77a55af 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_0.png
index 190a4c1..2cddf44 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_100.png
index 8e53289..f30829c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_50.png
index 421ca13..38f68c4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_spinner.png
index 0c2edf5..078d272 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_spinner.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch.png
index 24ddf30..415c08c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch_checked.png
index 6216a7d..24ed111 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_tabhost.png
index 79b0338..c361eab 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_textview.png
index 256a7c2..27b1fb0 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_timepicker.png
index 43e3494..3044660 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button.png
index 630353a..96315d4 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button_checked.png
index f1cf667..327874c 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_zoomcontrols.png b/tests/tests/holo/res/drawable-ldpi/holo_zoomcontrols.png
deleted file mode 100644
index ab090a6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_zoomcontrols.png
+++ /dev/null
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 2b2c3b4..bae6f93 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 ff21490..012988a 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_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view.png
index 2b2c3b4..bae6f93 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 ff21490..012988a 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_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view.png
index 2b2c3b4..bae6f93 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 ff21490..012988a 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_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_zoomcontrols.png
+++ /dev/null
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 2b2c3b4..bae6f93 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 ff21490..012988a 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_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_zoomcontrols.png
+++ /dev/null
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 ea0a1dd..b9182dc 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 6b27a29..dc00610 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 ea0a1dd..b9182dc 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 6b27a29..4930b34 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_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_zoomcontrols.png
+++ /dev/null
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 ea0a1dd..b9182dc 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 6b27a29..4930b34 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_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view.png
index ea0a1dd..b9182dc 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 6b27a29..4930b34 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_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_zoomcontrols.png
+++ /dev/null
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 ea0a1dd..b9182dc 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 6b27a29..4930b34 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_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_0.png
index aa86092..47c6e79 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_100.png
index 750a89c..fb86936 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_50.png
index fc91586..7fd1e0a 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_0.png
index 6a73d98..15c004c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_50.png
index 881276c..bd9518b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_switch.png
index 63753c8..438ceff 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_switch_checked.png
index f3b049f..28514bf 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_timepicker.png
index a235a97..eccc648 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_light_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_timepicker.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 2b2c3b4..bae6f93 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 ff21490..012988a 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_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_0.png
index a73db14..5582a31 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_100.png
index 2813c84..da819fd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_50.png
index d5c65a9..3a7d8c4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_0.png
index 6ef0c71..7163ee5 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_100.png
index 5be0453..1f898c8 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_50.png
index 3ba6228..d1c57a4 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch.png
index d1611e9..1d4117c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch_checked.png
index 0513f09..d3df320 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_timepicker.png
index 2ff2a30..9131bdd 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_zoomcontrols.png b/tests/tests/holo/res/drawable-mdpi/holo_zoomcontrols.png
deleted file mode 100644
index 7892bcf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..8b50eff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..da49356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_tabhost.png
new file mode 100644
index 0000000..f92e5e4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..bdc712f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..11a8a46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..385392e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_0.png
index 679469e..641fd75 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_100.png
index da25af6..2d1840a 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_50.png
index 4814d04..5cf63e0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_0.png
index fd72408..ca7bcec 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_50.png
index 5b3994a..a126a90 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_50.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 3cb8be2..8a8cca0 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 ebf1fa9..c3abdf3 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_timepicker.png
index 3427c27..b292054 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
index 592bf27..9be20f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
index a68c5a0..6fc6dcc 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
index 20965f7..4943d2e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_0.png
index b753e64..41d8c13 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_100.png
index cbc2ffe..6a6f906 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_50.png
index 5e0370d..41e6f5c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_50.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 84f458d..ecdb2f0 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 7023957..8b0701f 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_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_timepicker.png
index fec37f3..9c8d036 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_zoomcontrols.png b/tests/tests/holo/res/drawable-tvdpi/holo_zoomcontrols.png
deleted file mode 100644
index 6c2f5c5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_list.png
deleted file mode 100644
index 2089f47..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_multichoice.png
deleted file mode 100644
index 4abe60e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_onebutton.png
deleted file mode 100644
index 88175a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_singlechoice.png
deleted file mode 100644
index 709dfb2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_threebuttons.png
deleted file mode 100644
index 5c018d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_twobuttons.png
deleted file mode 100644
index 18569e7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png
index efecebb..1464e42 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png
index 76245b8..80d9c46 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png
index 16c7322..aaa84e2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressdialog_horizontal.png
deleted file mode 100644
index c049776..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png
index c61a55c..f45c12e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png
index c45851e..88b4ec9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png
index 3659839..70d202d 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png
index d2eb8d7..c9fe0c3 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png
index e40d33e..8a1c51e 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_list.png
deleted file mode 100644
index 2791d02..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_list.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
deleted file mode 100644
index 8f6b6df..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
deleted file mode 100644
index e0fabdf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
deleted file mode 100644
index 2aec266..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
deleted file mode 100644
index 9d73083..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
deleted file mode 100644
index 34810fa..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
index f1d481d..f7f9b31 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
index a586079..170a036 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
index 9467831..4b44526 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressdialog_horizontal.png
deleted file mode 100644
index 68cc076..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressdialog_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png
index eb26838..04dd1a6 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png
index a5ae2ba..b14235b 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png
index 8438db8..f9eea99 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png
index 7df89f7..bcba3ad 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png
index 8a8cbda..399fac9 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png
index 80eff06..1b5b0eb 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_zoomcontrols.png
deleted file mode 100644
index 21d17f9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_zoomcontrols.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/media/src/android/media/cts/MediaScannerTest.java b/tests/tests/media/src/android/media/cts/MediaScannerTest.java
index d58528d..eaa2032 100644
--- a/tests/tests/media/src/android/media/cts/MediaScannerTest.java
+++ b/tests/tests/media/src/android/media/cts/MediaScannerTest.java
@@ -37,6 +37,7 @@
 import android.provider.MediaStore;
 import android.provider.cts.FileCopyHelper;
 import android.test.AndroidTestCase;
+import android.util.Log;
 
 import java.io.File;
 import java.io.IOException;
@@ -184,6 +185,7 @@
         c.close();
         assertTrue("song id should not be 0", song1a != 0);
         assertTrue("song id should not be 0", song1b != 0);
+        assertTrue("song ids should not be same", song1a != song1b);
 
         // 2nd playlist should have the same songs, in reverse order
         c = res.query(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, null,
@@ -210,6 +212,87 @@
         checkConnectionState(false);
     }
 
+    public void testWildcardPaths() throws InterruptedException, IOException {
+        mMediaScannerConnectionClient = new MockMediaScannerConnectionClient();
+        mMediaScannerConnection = new MockMediaScannerConnection(getContext(),
+                                    mMediaScannerConnectionClient);
+
+        assertFalse(mMediaScannerConnection.isConnected());
+
+        // start connection and wait until connected
+        mMediaScannerConnection.connect();
+        checkConnectionState(true);
+
+        long now = System.currentTimeMillis();
+        String dir1 = mFileDir + "/test-" + now;
+        String file1 = dir1 + "/test.mp3";
+        String dir2 = mFileDir + "/test_" + now;
+        String file2 = dir2 + "/test.mp3";
+        assertTrue(new File(dir1).mkdir());
+        writeFile(R.raw.testmp3, file1);
+        mMediaScannerConnection.scanFile(file1, MEDIA_TYPE);
+        checkMediaScannerConnection();
+        Uri file1Uri = mMediaScannerConnectionClient.mediaUri;
+
+        assertTrue(new File(dir2).mkdir());
+        writeFile(R.raw.testmp3, file2);
+        mMediaScannerConnectionClient.reset();
+        mMediaScannerConnection.scanFile(file2, MEDIA_TYPE);
+        checkMediaScannerConnection();
+        Uri file2Uri = mMediaScannerConnectionClient.mediaUri;
+
+        // if the URIs are the same, then the media scanner likely treated the _ character
+        // in the second path as a wildcard, and matched it with the first path
+        assertFalse(file1Uri.equals(file2Uri));
+
+        // rewrite Uris to use the file scheme
+        long file1id = Long.valueOf(file1Uri.getLastPathSegment());
+        long file2id = Long.valueOf(file2Uri.getLastPathSegment());
+        file1Uri = MediaStore.Files.getContentUri("external", file1id);
+        file2Uri = MediaStore.Files.getContentUri("external", file2id);
+
+        ContentResolver res = mContext.getContentResolver();
+        Cursor c = res.query(file1Uri, new String[] { "parent" }, null, null, null);
+        c.moveToFirst();
+        long parent1id = c.getLong(0);
+        c.close();
+        c = res.query(file2Uri, new String[] { "parent" }, null, null, null);
+        c.moveToFirst();
+        long parent2id = c.getLong(0);
+        c.close();
+        // if the parent ids are the same, then the media provider likely
+        // treated the _ character in the second path as a wildcard
+        assertTrue("same parent", parent1id != parent2id);
+
+        // check the parent paths are correct
+        c = res.query(MediaStore.Files.getContentUri("external", parent1id),
+                new String[] { "_data" }, null, null, null);
+        c.moveToFirst();
+        assertEquals(dir1, c.getString(0));
+        c.close();
+
+        c = res.query(MediaStore.Files.getContentUri("external", parent2id),
+                new String[] { "_data" }, null, null, null);
+        c.moveToFirst();
+        assertEquals(dir2, c.getString(0));
+        c.close();
+
+        // clean up
+        new File(file1).delete();
+        new File(dir1).delete();
+        new File(file2).delete();
+        new File(dir2).delete();
+        res.delete(file1Uri, null, null);
+        res.delete(file2Uri, null, null);
+        res.delete(MediaStore.Files.getContentUri("external", parent1id), null, null);
+        res.delete(MediaStore.Files.getContentUri("external", parent2id), null, null);
+
+        mMediaScannerConnection.disconnect();
+
+        checkConnectionState(false);
+    }
+
+
     private void startMediaScanAndWait() throws InterruptedException {
         ScannerNotificationReceiver finishedReceiver = new ScannerNotificationReceiver(
                 Intent.ACTION_MEDIA_SCANNER_FINISHED);
diff --git a/tests/tests/provider/src/android/provider/cts/MediaStore_FilesTest.java b/tests/tests/provider/src/android/provider/cts/MediaStore_FilesTest.java
index 9432066..1e8a4ac 100644
--- a/tests/tests/provider/src/android/provider/cts/MediaStore_FilesTest.java
+++ b/tests/tests/provider/src/android/provider/cts/MediaStore_FilesTest.java
@@ -16,15 +16,22 @@
 
 package android.provider.cts;
 
+import com.android.cts.stub.R;
+
 import android.content.ContentResolver;
 import android.content.ContentUris;
 import android.content.ContentValues;
 import android.database.Cursor;
 import android.net.Uri;
+import android.os.Environment;
+import android.os.ParcelFileDescriptor;
 import android.provider.MediaStore;
 import android.provider.MediaStore.MediaColumns;
 import android.test.AndroidTestCase;
 
+import java.io.File;
+import java.io.IOException;
+
 public class MediaStore_FilesTest extends AndroidTestCase {
 
     private ContentResolver mResolver;
@@ -88,6 +95,63 @@
         } finally {
             cursor.close();
         }
+
+        // insert file and check its parent
+        values.clear();
+        try {
+            String b = mContext.getExternalFilesDir(Environment.DIRECTORY_MUSIC).getCanonicalPath();
+            values.put(MediaColumns.DATA, b + "/testing");
+            fileUri = mResolver.insert(allFilesUri, values);
+            cursor = mResolver.query(fileUri, new String[] { MediaStore.Files.FileColumns.PARENT },
+                    null, null, null);
+            assertEquals(1, cursor.getCount());
+            cursor.moveToFirst();
+            long parentid = cursor.getLong(0);
+            assertTrue("got 0 parent for non root file", parentid != 0);
+
+            cursor.close();
+            cursor = mResolver.query(ContentUris.withAppendedId(allFilesUri, parentid),
+                    new String[] { MediaColumns.DATA }, null, null, null);
+            assertEquals(1, cursor.getCount());
+            cursor.moveToFirst();
+            String parentPath = cursor.getString(0);
+            assertEquals(b, parentPath);
+
+            mResolver.delete(fileUri, null, null);
+        } catch (IOException e) {
+            fail(e.getMessage());
+        } finally {
+            cursor.close();
+        }
+    }
+
+    public void testCaseSensitivity() throws IOException {
+        String fileDir = Environment.getExternalStorageDirectory() +
+                "/" + getClass().getCanonicalName();
+        String fileName = fileDir + "/Test.Mp3";
+        writeFile(R.raw.testmp3, fileName);
+
+        String volumeName = MediaStoreAudioTestHelper.EXTERNAL_VOLUME_NAME;
+        Uri allFilesUri = MediaStore.Files.getContentUri(volumeName);
+        ContentValues values = new ContentValues();
+        values.put(MediaColumns.DATA, fileDir + "/test.mp3");
+        Uri fileUri = mResolver.insert(allFilesUri, values);
+        try {
+            ParcelFileDescriptor pfd = mResolver.openFileDescriptor(fileUri, "r");
+            pfd.close();
+        } finally {
+            mResolver.delete(fileUri, null, null);
+            new File(fileName).delete();
+            new File(fileDir).delete();
+        }
+    }
+
+    private void writeFile(int resid, String path) throws IOException {
+        File out = new File(path);
+        File dir = out.getParentFile();
+        dir.mkdirs();
+        FileCopyHelper copier = new FileCopyHelper(mContext);
+        copier.copyToExternalStorage(resid, out);
     }
 
     private int getFileCount(Uri uri) {