diff --git a/Android.mk b/Android.mk index dedda011ccc..b7bc093fc52 100644 --- a/Android.mk +++ b/Android.mk @@ -1,14 +1,19 @@ LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) -LOCAL_MODULE_TAGS := user +LOCAL_JAVA_LIBRARIES := bouncycastle +LOCAL_STATIC_JAVA_LIBRARIES := guava + +LOCAL_MODULE_TAGS := optional LOCAL_SRC_FILES := $(call all-java-files-under, src) LOCAL_PACKAGE_NAME := Settings LOCAL_CERTIFICATE := platform +LOCAL_PROGUARD_FLAG_FILES := proguard.flags + include $(BUILD_PACKAGE) -# Use the folloing include to make our test apk. +# Use the following include to make our test apk. include $(call all-makefiles-under,$(LOCAL_PATH)) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 1500d8b34c5..3a835c1cb22 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,24 +1,32 @@ - - + + + + + + + + + @@ -30,22 +38,38 @@ - + + + + + + + + + + + + + + + android:icon="@mipmap/ic_launcher_settings" + android:taskAffinity="" + android:theme="@android:style/Theme.Holo" + android:uiOptions="splitActionBarWhenNarrow" + android:hardwareAccelerated="true"> - + android:launchMode="singleTask"> @@ -54,7 +78,12 @@ - + + + + @@ -63,60 +92,153 @@ - + + + + - + - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + - + @@ -124,79 +246,209 @@ + + - + + + + + + + + + + + + + + - + + + + + - + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + - + + + - - android:screenOrientation="portrait" + - + + + - - + + + + + + + - + + android:exported="true" + android:targetActivity="Settings$InputMethodAndLanguageSettingsActivity"> + + + + + - - + + + + - + + + - + + + + + + @@ -205,146 +457,482 @@ - + + + + - + + android:exported="true" + android:targetActivity="Settings$UserDictionarySettingsActivity"> + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + android:theme="@android:style/Theme.Holo.Panel" + android:configChanges="orientation|screenSize"> - + + + + + + + + + + + + + - + + + + + + + + android:exported="true" + android:targetActivity="Settings$ManageApplicationsActivity"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + - - + + + - + + + + + - + - - - + + + - + + + + + - + + + + + + + - + + + + + + + - + + + + + + + + + + - + + + + + - + + + + + + + + + + + + + + - - - + - + + + - + - + + + + + + + - - + + - + + + + + - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -353,7 +941,8 @@ - + @@ -361,9 +950,18 @@ + + - + + + @@ -376,12 +974,8 @@ - - - - - - + @@ -390,16 +984,17 @@ - + - + @@ -407,51 +1002,183 @@ - + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + - + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + - + - - + + + + + + + + + + + + + + + + + + android:theme="@*android:style/Theme.Holo.Dialog.Alert" + android:finishOnCloseSystemDialogs="true"> + + + + + + + + + - - + + + + + + + @@ -477,13 +1204,6 @@ - - - - - - - @@ -500,22 +1220,16 @@ - - - - - - - - - + + - + - + + android:theme="@*android:style/Theme.Holo.Dialog.Alert" + android:finishOnCloseSystemDialogs="true"> - - - @@ -565,35 +1274,206 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + - - + + + + + + + + + + diff --git a/CleanSpec.mk b/CleanSpec.mk new file mode 100644 index 00000000000..b84e1b65e75 --- /dev/null +++ b/CleanSpec.mk @@ -0,0 +1,49 @@ +# Copyright (C) 2007 The Android Open 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. +# + +# If you don't need to do a full clean build but would like to touch +# a file or delete some intermediate files, add a clean step to the end +# of the list. These steps will only be run once, if they haven't been +# run before. +# +# E.g.: +# $(call add-clean-step, touch -c external/sqlite/sqlite3.h) +# $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates) +# +# Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with +# files that are missing or have been moved. +# +# Use $(PRODUCT_OUT) to get to the "out/target/product/blah/" directory. +# Use $(OUT_DIR) to refer to the "out" directory. +# +# If you need to re-do something that's already mentioned, just copy +# the command and add it to the bottom of the list. E.g., if a change +# that you made last week required touching a file and a change you +# made today requires touching the same file, just copy the old +# touch step and add it to the end of the list. +# +# ************************************************ +# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST +# ************************************************ + +# For example: +#$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates) +#$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates) +#$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f) +#$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*) + +# ************************************************ +# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST +# ************************************************ diff --git a/assets/html/cs/tethering_help.html b/assets/html/cs/tethering_help.html new file mode 100644 index 00000000000..92ffb5a6127 --- /dev/null +++ b/assets/html/cs/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Sdílené datové připojení prostřednictvím portu USB

+Propojíte-li počítač a telefon kabelem USB, můžete připojení k internetu svého telefonu sdílet s připojeným počítačem. + +

Sdílení datového připojení prostřednictvím sítě WiFi

+Telefon může sloužit jako přístupový bod sítě WiFi. Připojení k internetu svého telefonu můžete sdílet hned s několika počítači nebo jinými zařízeními. + + + diff --git a/assets/html/cs/tethering_usb_help.html b/assets/html/cs/tethering_usb_help.html new file mode 100644 index 00000000000..425431f92d3 --- /dev/null +++ b/assets/html/cs/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Sdílené datové připojení prostřednictvím portu USB

+Propojíte-li počítač a telefon kabelem USB, můžete připojení k internetu svého telefonu sdílet s připojeným počítačem. + + + diff --git a/assets/html/cs/tethering_wifi_help.html b/assets/html/cs/tethering_wifi_help.html new file mode 100644 index 00000000000..630438cf00f --- /dev/null +++ b/assets/html/cs/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Sdílení datového připojení prostřednictvím sítě WiFi

+Telefon může sloužit jako přístupový bod sítě WiFi. Připojení k internetu svého telefonu můžete sdílet hned s několika počítači nebo jinými zařízeními. + + + diff --git a/assets/html/da/tethering_help.html b/assets/html/da/tethering_help.html new file mode 100644 index 00000000000..3b2a55399ea --- /dev/null +++ b/assets/html/da/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB-tethering

+Du kan tether din telefon til din computer med et USB-kabel for at dele din telefons internetforbindelse med din computer + +

Wi-Fi-tethering

+Du kan gøre din telefon til et Wi-Fi-adgangspunkt, så du kan dele din telefons internetforbindelse med en eller flere computere eller andre enheder + + + diff --git a/assets/html/da/tethering_usb_help.html b/assets/html/da/tethering_usb_help.html new file mode 100644 index 00000000000..f9f7fc1cb08 --- /dev/null +++ b/assets/html/da/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB-tethering

+Du kan tether din telefon til din computer med et USB-kabel for at dele din telefons internetforbindelse med din computer + + + diff --git a/assets/html/da/tethering_wifi_help.html b/assets/html/da/tethering_wifi_help.html new file mode 100644 index 00000000000..8c5063b19ef --- /dev/null +++ b/assets/html/da/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Wi-Fi-tethering

+Du kan gøre din telefon til et Wi-Fi-adgangspunkt, så du kan dele din telefons internetforbindelse med en eller flere computere eller andre enheder + + + diff --git a/assets/html/de/tethering_help.html b/assets/html/de/tethering_help.html new file mode 100644 index 00000000000..317e176a066 --- /dev/null +++ b/assets/html/de/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB-Tethering

+Sie können Ihr Telefon über ein USB-Kabel mit Ihrem Computer verbinden, um die Internetverbindung auf Ihrem Telefon auf Ihrem Computer nutzen zu können. + +

Wi-Fi-Tethering

+Sie können Ihr Telefon in einen Wi-Fi-Zugangspunkt verwandeln, um die Internetverbindung Ihres Telefons auf einem oder mehreren Computern bzw. anderen Geräten nutzen zu können. + + + diff --git a/assets/html/de/tethering_usb_help.html b/assets/html/de/tethering_usb_help.html new file mode 100644 index 00000000000..8bad77d29aa --- /dev/null +++ b/assets/html/de/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB-Tethering

+Sie können Ihr Telefon über ein USB-Kabel mit Ihrem Computer verbinden, um die Internetverbindung auf Ihrem Telefon auf Ihrem Computer nutzen zu können. + + + diff --git a/assets/html/de/tethering_wifi_help.html b/assets/html/de/tethering_wifi_help.html new file mode 100644 index 00000000000..a7087662645 --- /dev/null +++ b/assets/html/de/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Wi-Fi-Tethering

+Sie können Ihr Telefon in einen Wi-Fi-Zugangspunkt verwandeln, um die Internetverbindung Ihres Telefons auf einem oder mehreren Computern bzw. anderen Geräten nutzen zu können. + + + diff --git a/assets/html/el/tethering_help.html b/assets/html/el/tethering_help.html new file mode 100644 index 00000000000..eae22eb509f --- /dev/null +++ b/assets/html/el/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Σύνδεση μέσω κινητής συσκευής με USB

+Μπορείτε να συνδέσετε το τηλέφωνο με τον υπολογιστή σας με ένα καλώδιο USB, για κοινή χρήση της σύνδεσης στο Διαδίκτυο του τηλεφώνου σας με τον υπολογιστή σας + +

Σύνδεση μέσω κινητής συσκευής με Wi-Fi

+Μπορείτε να μετατρέψετε το τηλέφωνό σας σε ένα σημείο πρόσβασης Wi-Fi, για κοινή χρήση της σύνδεσης στο Διαδίκτυο του τηλεφώνου σας με έναν ή περισσότερους υπολογιστές ή άλλες συσκευές + + + diff --git a/assets/html/el/tethering_usb_help.html b/assets/html/el/tethering_usb_help.html new file mode 100644 index 00000000000..96ea2c8fdff --- /dev/null +++ b/assets/html/el/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Σύνδεση μέσω κινητής συσκευής με USB

+Μπορείτε να συνδέσετε το τηλέφωνο με τον υπολογιστή σας με ένα καλώδιο USB, για κοινή χρήση της σύνδεσης στο Διαδίκτυο του τηλεφώνου σας με τον υπολογιστή σας + + + diff --git a/assets/html/el/tethering_wifi_help.html b/assets/html/el/tethering_wifi_help.html new file mode 100644 index 00000000000..85077486b9d --- /dev/null +++ b/assets/html/el/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Σύνδεση μέσω κινητής συσκευής με Wi-Fi

+Μπορείτε να μετατρέψετε το τηλέφωνό σας σε ένα σημείο πρόσβασης Wi-Fi, για κοινή χρήση της σύνδεσης στο Διαδίκτυο του τηλεφώνου σας με έναν ή περισσότερους υπολογιστές ή άλλες συσκευές + + + diff --git a/assets/html/en_gb/tethering_help.html b/assets/html/en_gb/tethering_help.html new file mode 100644 index 00000000000..63fec31e2d3 --- /dev/null +++ b/assets/html/en_gb/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB tethering

+You can tether your phone to your computer with a USB cable, to share your phone's Internet connection with your computer + +

Wi-Fi tethering

+You can turn your phone into a Wi-Fi access point, to share your phone's Internet connection with one or more computers or other devices + + + diff --git a/assets/html/en_gb/tethering_usb_help.html b/assets/html/en_gb/tethering_usb_help.html new file mode 100644 index 00000000000..50e21546903 --- /dev/null +++ b/assets/html/en_gb/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB tethering

+You can tether your phone to your computer with a USB cable, to share your phone's Internet connection with your computer + + + diff --git a/assets/html/en_gb/tethering_wifi_help.html b/assets/html/en_gb/tethering_wifi_help.html new file mode 100644 index 00000000000..3e8c1af0720 --- /dev/null +++ b/assets/html/en_gb/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Wi-Fi tethering

+You can turn your phone into a Wi-Fi access point, to share your phone's Internet connection with one or more computers or other devices + + + diff --git a/assets/html/en_us/tethering_bluetooth_help.html b/assets/html/en_us/tethering_bluetooth_help.html new file mode 100644 index 00000000000..eb181f804bb --- /dev/null +++ b/assets/html/en_us/tethering_bluetooth_help.html @@ -0,0 +1,27 @@ + + + + + + +

Bluetooth tethering

+You can tether your Android device to your computer via a Bluetooth connection, to share your device's Internet connection with your computer + + + diff --git a/assets/html/en_us/tethering_help.html b/assets/html/en_us/tethering_help.html new file mode 100644 index 00000000000..e980b200ec0 --- /dev/null +++ b/assets/html/en_us/tethering_help.html @@ -0,0 +1,43 @@ + + + + + + +

USB tethering

+You can tether your Android device to your computer with a USB cable, to share your device's Internet connection with your computer + + +

Bluetooth tethering

+You can tether your Android device to your computer via a Bluetooth connection, to share your device's Internet connection with your computer + + +

Portable Wi-Fi hotspot

+You can turn your Android device into a portable Wi-Fi hotspot, to share your Android device's Internet connection with one or more computers or other devices + + + diff --git a/assets/html/en_us/tethering_usb_help.html b/assets/html/en_us/tethering_usb_help.html new file mode 100644 index 00000000000..b3dbf58e847 --- /dev/null +++ b/assets/html/en_us/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB tethering

+You can tether your Android device to your computer with a USB cable, to share your device's Internet connection with your computer + + + diff --git a/assets/html/en_us/tethering_wifi_help.html b/assets/html/en_us/tethering_wifi_help.html new file mode 100644 index 00000000000..621f869d905 --- /dev/null +++ b/assets/html/en_us/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Portable Wi-Fi hotspot

+You can turn your Android device into a portable Wi-Fi hotspot, to share your Android device's Internet connection with one or more computers or other devices + + + diff --git a/assets/html/es/tethering_help.html b/assets/html/es/tethering_help.html new file mode 100644 index 00000000000..35a1e16bb61 --- /dev/null +++ b/assets/html/es/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Anclaje de USB

+Puedes anclar el teléfono a tu ordenador con un cable USB para compartir la conexión a Internet del teléfono con el equipo. + +

Anclaje a red Wi-Fi

+Puedes convertir el teléfono en un punto de acceso Wi-Fi para compartir la conexión a Internet del teléfono con uno o con varios equipos o dispositivos. + + + diff --git a/assets/html/es/tethering_usb_help.html b/assets/html/es/tethering_usb_help.html new file mode 100644 index 00000000000..ec7a7467272 --- /dev/null +++ b/assets/html/es/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Anclaje de USB

+Puedes anclar el teléfono a tu ordenador con un cable USB para compartir la conexión a Internet del teléfono con el equipo. + + + diff --git a/assets/html/es/tethering_wifi_help.html b/assets/html/es/tethering_wifi_help.html new file mode 100644 index 00000000000..07617359a8b --- /dev/null +++ b/assets/html/es/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Anclaje a red Wi-Fi

+Puedes convertir el teléfono en un punto de acceso Wi-Fi para compartir la conexión a Internet del teléfono con uno o con varios equipos o dispositivos. + + + diff --git a/assets/html/es_us/tethering_help.html b/assets/html/es_us/tethering_help.html new file mode 100644 index 00000000000..f3055a0bce9 --- /dev/null +++ b/assets/html/es_us/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Anclaje a red USB

+Puedes anclar tu teléfono a tu computadora con un cable USB para compartir la conexión a Internet de tu teléfono con tu computadora. + +

Anclaje a redes de Wi-Fi

+Puedes cambiar tu teléfono a un punto de acceso Wi-Fi para compartir la conexión a Internet de tu teléfono con una computadora o un dispositivo, o más. + + + diff --git a/assets/html/es_us/tethering_usb_help.html b/assets/html/es_us/tethering_usb_help.html new file mode 100644 index 00000000000..b29b8a9556b --- /dev/null +++ b/assets/html/es_us/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Anclaje a red USB

+Puedes anclar tu teléfono a tu computadora con un cable USB para compartir la conexión a Internet de tu teléfono con tu computadora. + + + diff --git a/assets/html/es_us/tethering_wifi_help.html b/assets/html/es_us/tethering_wifi_help.html new file mode 100644 index 00000000000..ae080939cfe --- /dev/null +++ b/assets/html/es_us/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Anclaje a redes de Wi-Fi

+Puedes cambiar tu teléfono a un punto de acceso Wi-Fi para compartir la conexión a Internet de tu teléfono con una computadora o un dispositivo, o más. + + + diff --git a/assets/html/fr/tethering_help.html b/assets/html/fr/tethering_help.html new file mode 100644 index 00000000000..735606791c0 --- /dev/null +++ b/assets/html/fr/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Partage de connexion par USB

+Vous pouvez partager la connexion Internet de votre mobile avec votre ordinateur, cela en connectant le téléphone à l'ordinateur par le biais d'un câble USB. + +

Partage de connexion via Wi-Fi

+Vous pouvez transformer votre mobile en point d'accès Wi-Fi et ainsi partager la connexion Internet du téléphone avec un ou plusieurs ordinateurs ou autres appareils. + + + diff --git a/assets/html/fr/tethering_usb_help.html b/assets/html/fr/tethering_usb_help.html new file mode 100644 index 00000000000..2000bcc2bb1 --- /dev/null +++ b/assets/html/fr/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Partage de connexion par USB

+Vous pouvez partager la connexion Internet de votre mobile avec votre ordinateur, cela en connectant le téléphone à l'ordinateur par le biais d'un câble USB. + + + diff --git a/assets/html/fr/tethering_wifi_help.html b/assets/html/fr/tethering_wifi_help.html new file mode 100644 index 00000000000..4fab911c242 --- /dev/null +++ b/assets/html/fr/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Partage de connexion via Wi-Fi

+Vous pouvez transformer votre mobile en point d'accès Wi-Fi et ainsi partager la connexion Internet du téléphone avec un ou plusieurs ordinateurs ou autres appareils. + + + diff --git a/assets/html/it/tethering_help.html b/assets/html/it/tethering_help.html new file mode 100644 index 00000000000..7434bb83c2a --- /dev/null +++ b/assets/html/it/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Tethering USB

+È possibile eseguire il tethering tra telefono e computer con un cavo USB per condividere la connessione Internet del cellulare con il computer. + +

Tethering Wi-Fi

+È possibile trasformare il telefono in un punto di accesso Wi-Fi per condividere la connessione Internet del cellulare con uno o più computer o altri dispositivi. + + + diff --git a/assets/html/it/tethering_usb_help.html b/assets/html/it/tethering_usb_help.html new file mode 100644 index 00000000000..fcd7a038493 --- /dev/null +++ b/assets/html/it/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Tethering USB

+È possibile eseguire il tethering tra telefono e computer con un cavo USB per condividere la connessione Internet del cellulare con il computer. + + + diff --git a/assets/html/it/tethering_wifi_help.html b/assets/html/it/tethering_wifi_help.html new file mode 100644 index 00000000000..d53b07f3962 --- /dev/null +++ b/assets/html/it/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Tethering Wi-Fi

+È possibile trasformare il telefono in un punto di accesso Wi-Fi per condividere la connessione Internet del cellulare con uno o più computer o altri dispositivi. + + + diff --git a/assets/html/ja/tethering_help.html b/assets/html/ja/tethering_help.html new file mode 100644 index 00000000000..4fd606554c8 --- /dev/null +++ b/assets/html/ja/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB テザリング

+USB ケーブルを使って携帯端末をパソコンにテザリングし、端末のインターネット接続をパソコンと共有できます。 + +

Wi-Fi テザリング

+お使いの携帯端末を Wi-Fi アクセス ポイントとして利用し、端末のインターネット接続を 1 台以上のパソコンやその他の端末で共有できます。 + + + diff --git a/assets/html/ja/tethering_usb_help.html b/assets/html/ja/tethering_usb_help.html new file mode 100644 index 00000000000..9bd95e6f247 --- /dev/null +++ b/assets/html/ja/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB テザリング

+USB ケーブルを使って携帯端末をパソコンにテザリングし、端末のインターネット接続をパソコンと共有できます。 + + + diff --git a/assets/html/ja/tethering_wifi_help.html b/assets/html/ja/tethering_wifi_help.html new file mode 100644 index 00000000000..d6c2a9a0698 --- /dev/null +++ b/assets/html/ja/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Wi-Fi テザリング

+お使いの携帯端末を Wi-Fi アクセス ポイントとして利用し、端末のインターネット接続を 1 台以上のパソコンやその他の端末で共有できます。 + + + diff --git a/assets/html/ko/tethering_help.html b/assets/html/ko/tethering_help.html new file mode 100644 index 00000000000..0239f68be54 --- /dev/null +++ b/assets/html/ko/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB 테더링

+USB 케이블로 휴대전화를 컴퓨터에 테더링하여 휴대전화의 인터넷 연결을 컴퓨터와 공유할 수 있습니다. + +

Wi-Fi 테더링

+휴대전화를 Wi-Fi 액세스 포인트로 전환하여 휴대전화의 인터넷 연결을 하나 이상의 컴퓨터 또는 기타 기기와 공유할 수 있습니다. + + + diff --git a/assets/html/ko/tethering_usb_help.html b/assets/html/ko/tethering_usb_help.html new file mode 100644 index 00000000000..66ac3de7382 --- /dev/null +++ b/assets/html/ko/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB 테더링

+USB 케이블로 휴대전화를 컴퓨터에 테더링하여 휴대전화의 인터넷 연결을 컴퓨터와 공유할 수 있습니다. + + + diff --git a/assets/html/ko/tethering_wifi_help.html b/assets/html/ko/tethering_wifi_help.html new file mode 100644 index 00000000000..b51b93e2bbf --- /dev/null +++ b/assets/html/ko/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Wi-Fi 테더링

+휴대전화를 Wi-Fi 액세스 포인트로 전환하여 휴대전화의 인터넷 연결을 하나 이상의 컴퓨터 또는 기타 기기와 공유할 수 있습니다. + + + diff --git a/assets/html/nl/tethering_help.html b/assets/html/nl/tethering_help.html new file mode 100644 index 00000000000..febd1afa00a --- /dev/null +++ b/assets/html/nl/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB-tethering

+U kunt uw telefoon tetheren met een USB-kabel om de internetverbinding van uw telefoon te delen met uw computer + +

Wi-Fi-tethering

+U kunt uw telefoon gebruiken als Wi-Fi-toegangspunt om de internetverbinding van uw telefoon te delen met een of meer computers of andere apparaten + + + diff --git a/assets/html/nl/tethering_usb_help.html b/assets/html/nl/tethering_usb_help.html new file mode 100644 index 00000000000..fc027da340a --- /dev/null +++ b/assets/html/nl/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB-tethering

+U kunt uw telefoon tetheren met een USB-kabel om de internetverbinding van uw telefoon te delen met uw computer + + + diff --git a/assets/html/nl/tethering_wifi_help.html b/assets/html/nl/tethering_wifi_help.html new file mode 100644 index 00000000000..13f0fa0721e --- /dev/null +++ b/assets/html/nl/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Wi-Fi-tethering

+U kunt uw telefoon gebruiken als Wi-Fi-toegangspunt om de internetverbinding van uw telefoon te delen met een of meer computers of andere apparaten + + + diff --git a/assets/html/no/tethering_help.html b/assets/html/no/tethering_help.html new file mode 100644 index 00000000000..2883592c7a2 --- /dev/null +++ b/assets/html/no/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB-tilknytning

+Du kan knytte telefonen til datamaskinen med en USB-kabel, slik at du kan dele telefonens Internett-tilkobling med maskinen + +

Tilknytning av trådløst nett

+Telefonen kan angis som et tilgangspunkt for trådløst nett for deling av Internett-tilkobling med én eller flere datamaskiner eller andre enheter + + + diff --git a/assets/html/no/tethering_usb_help.html b/assets/html/no/tethering_usb_help.html new file mode 100644 index 00000000000..e32c8b227b0 --- /dev/null +++ b/assets/html/no/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB-tilknytning

+Du kan knytte telefonen til datamaskinen med en USB-kabel, slik at du kan dele telefonens Internett-tilkobling med maskinen + + + diff --git a/assets/html/no/tethering_wifi_help.html b/assets/html/no/tethering_wifi_help.html new file mode 100644 index 00000000000..84e5910aa5f --- /dev/null +++ b/assets/html/no/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Tilknytning av trådløst nett

+Telefonen kan angis som et tilgangspunkt for trådløst nett for deling av Internett-tilkobling med én eller flere datamaskiner eller andre enheter + + + diff --git a/assets/html/pl/tethering_help.html b/assets/html/pl/tethering_help.html new file mode 100644 index 00000000000..271f92f4ecc --- /dev/null +++ b/assets/html/pl/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Powiązanie USB

+Telefon możesz powiązać z komputerem przy użyciu kabla USB, aby udostępniać na nim połączenie internetowe telefonu. + +

Powiązanie Wi-Fi

+Telefon możesz przekształcić w punkt dostępowy Wi-Fi, aby udostępniać połączenie internetowe telefonu jednemu lub większej liczbie komputerów i innych urządzeń. + + + diff --git a/assets/html/pl/tethering_usb_help.html b/assets/html/pl/tethering_usb_help.html new file mode 100644 index 00000000000..67d343ca61d --- /dev/null +++ b/assets/html/pl/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Powiązanie USB

+Telefon możesz powiązać z komputerem przy użyciu kabla USB, aby udostępniać na nim połączenie internetowe telefonu. + + + diff --git a/assets/html/pl/tethering_wifi_help.html b/assets/html/pl/tethering_wifi_help.html new file mode 100644 index 00000000000..50a66a77dd1 --- /dev/null +++ b/assets/html/pl/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Powiązanie Wi-Fi

+Telefon możesz przekształcić w punkt dostępowy Wi-Fi, aby udostępniać połączenie internetowe telefonu jednemu lub większej liczbie komputerów i innych urządzeń. + + + diff --git a/assets/html/pt_br/tethering_help.html b/assets/html/pt_br/tethering_help.html new file mode 100644 index 00000000000..00c4251b77f --- /dev/null +++ b/assets/html/pt_br/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Vínculo USB

+Você pode vincular seu telefone ao seu computador com um cabo USB, compartilhando a conexão com a internet do telefone + +

Vínculo Wi-Fi

+Use seu telefone como um ponto de acesso Wi-Fi, compartilhando a conexão com a internet do telefone com computadores ou outros aparelhos + + + diff --git a/assets/html/pt_br/tethering_usb_help.html b/assets/html/pt_br/tethering_usb_help.html new file mode 100644 index 00000000000..8db1cc264af --- /dev/null +++ b/assets/html/pt_br/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Vínculo USB

+Você pode vincular seu telefone ao seu computador com um cabo USB, compartilhando a conexão com a internet do telefone + + + diff --git a/assets/html/pt_br/tethering_wifi_help.html b/assets/html/pt_br/tethering_wifi_help.html new file mode 100644 index 00000000000..88ca44f71c3 --- /dev/null +++ b/assets/html/pt_br/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Vínculo Wi-Fi

+Use seu telefone como um ponto de acesso Wi-Fi, compartilhando a conexão com a internet do telefone com computadores ou outros aparelhos + + + diff --git a/assets/html/pt_pt/tethering_help.html b/assets/html/pt_pt/tethering_help.html new file mode 100644 index 00000000000..ecf9c6535a2 --- /dev/null +++ b/assets/html/pt_pt/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Associação USB

+Pode associar o seu telefone ao computador com um cabo USB, para partilhar com o computador a ligação à internet do telefone + +

Associação Wi-Fi

+Pode transformar o seu telefone num ponto de acesso Wi-Fi para partilhar a ligação à internet do telefone com um ou mais computadores ou outros dispositivos + + + diff --git a/assets/html/pt_pt/tethering_usb_help.html b/assets/html/pt_pt/tethering_usb_help.html new file mode 100644 index 00000000000..8cfab8c4811 --- /dev/null +++ b/assets/html/pt_pt/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Associação USB

+Pode associar o seu telefone ao computador com um cabo USB, para partilhar com o computador a ligação à internet do telefone + + + diff --git a/assets/html/pt_pt/tethering_wifi_help.html b/assets/html/pt_pt/tethering_wifi_help.html new file mode 100644 index 00000000000..c214ae05fd5 --- /dev/null +++ b/assets/html/pt_pt/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Associação Wi-Fi

+Pode transformar o seu telefone num ponto de acesso Wi-Fi para partilhar a ligação à internet do telefone com um ou mais computadores ou outros dispositivos + + + diff --git a/assets/html/ru/tethering_help.html b/assets/html/ru/tethering_help.html new file mode 100644 index 00000000000..e09e428633d --- /dev/null +++ b/assets/html/ru/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB-подключение

+Вы можете подключить телефон к компьютеру с помощью USB-кабеля и предоставить компьютеру интернет-подключение, установленное посредством телефона. + +

Подключение Wi-Fi

+Телефон можно использовать как точку доступа Wi-Fi. В этом случае несколько компьютеров или других устройств смогут использовать интернет-подключение, установленное посредством телефона. + + + diff --git a/assets/html/ru/tethering_usb_help.html b/assets/html/ru/tethering_usb_help.html new file mode 100644 index 00000000000..570b88b0c6c --- /dev/null +++ b/assets/html/ru/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB-подключение

+Вы можете подключить телефон к компьютеру с помощью USB-кабеля и предоставить компьютеру интернет-подключение, установленное посредством телефона. + + + diff --git a/assets/html/ru/tethering_wifi_help.html b/assets/html/ru/tethering_wifi_help.html new file mode 100644 index 00000000000..6fcca625633 --- /dev/null +++ b/assets/html/ru/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Подключение Wi-Fi

+Телефон можно использовать как точку доступа Wi-Fi. В этом случае несколько компьютеров или других устройств смогут использовать интернет-подключение, установленное посредством телефона. + + + diff --git a/assets/html/sv/tethering_help.html b/assets/html/sv/tethering_help.html new file mode 100644 index 00000000000..2242e9820ab --- /dev/null +++ b/assets/html/sv/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

Internetdelning via USB

+Du kan ansluta telefonen till datorn med en USB-kabel om du vill dela telefonens Internetanslutning med datorn + +

Internetdelning via Wi-Fi

+Du kan göra din telefon till en åtkomstpunkt för Wi-FI om du vill dela telefonens Internetanslutning med en eller flera datorer eller enheter + + + diff --git a/assets/html/sv/tethering_usb_help.html b/assets/html/sv/tethering_usb_help.html new file mode 100644 index 00000000000..a16ec513937 --- /dev/null +++ b/assets/html/sv/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

Internetdelning via USB

+Du kan ansluta telefonen till datorn med en USB-kabel om du vill dela telefonens Internetanslutning med datorn + + + diff --git a/assets/html/sv/tethering_wifi_help.html b/assets/html/sv/tethering_wifi_help.html new file mode 100644 index 00000000000..cfffe4d6462 --- /dev/null +++ b/assets/html/sv/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Internetdelning via Wi-Fi

+Du kan göra din telefon till en åtkomstpunkt för Wi-FI om du vill dela telefonens Internetanslutning med en eller flera datorer eller enheter + + + diff --git a/assets/html/tr/tethering_help.html b/assets/html/tr/tethering_help.html new file mode 100644 index 00000000000..cb59618d314 --- /dev/null +++ b/assets/html/tr/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB bağlantısı

+Telefonunuzun internet bağlantısını bilgisayarınızla paylaşmak için telefonunuzu bir USB kablosuyla bilgisayarınıza bağlayabilirsiniz + +

Kablosuz bağlantı

+Telefonunuzun internet bağlantısını bir veya daha fazla bilgisayarla ya da diğer cihazlarla paylaşmak için telefonunuzu kablosuz erişim noktasına dönüştürebilirsiniz + + + diff --git a/assets/html/tr/tethering_usb_help.html b/assets/html/tr/tethering_usb_help.html new file mode 100644 index 00000000000..9b01ff91bf3 --- /dev/null +++ b/assets/html/tr/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB bağlantısı

+Telefonunuzun internet bağlantısını bilgisayarınızla paylaşmak için telefonunuzu bir USB kablosuyla bilgisayarınıza bağlayabilirsiniz + + + diff --git a/assets/html/tr/tethering_wifi_help.html b/assets/html/tr/tethering_wifi_help.html new file mode 100644 index 00000000000..60f8206c0f8 --- /dev/null +++ b/assets/html/tr/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Kablosuz bağlantı

+Telefonunuzun internet bağlantısını bir veya daha fazla bilgisayarla ya da diğer cihazlarla paylaşmak için telefonunuzu kablosuz erişim noktasına dönüştürebilirsiniz + + + diff --git a/assets/html/zh_cn/tethering_help.html b/assets/html/zh_cn/tethering_help.html new file mode 100644 index 00000000000..0513eb79669 --- /dev/null +++ b/assets/html/zh_cn/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB 绑定

+您可以通过 USB 线将手机与计算机绑定,从而与计算机共享手机的互联网连接 + +

Wi-Fi 绑定

+您可以将手机设为 Wi-Fi 接入点,从而与一台或多台计算机或者其他设备共享手机的互联网连接 + + + diff --git a/assets/html/zh_cn/tethering_usb_help.html b/assets/html/zh_cn/tethering_usb_help.html new file mode 100644 index 00000000000..adb3769db83 --- /dev/null +++ b/assets/html/zh_cn/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB 绑定

+您可以通过 USB 线将手机与计算机绑定,从而与计算机共享手机的互联网连接 + + + diff --git a/assets/html/zh_cn/tethering_wifi_help.html b/assets/html/zh_cn/tethering_wifi_help.html new file mode 100644 index 00000000000..32a8792adaf --- /dev/null +++ b/assets/html/zh_cn/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Wi-Fi 绑定

+您可以将手机设为 Wi-Fi 接入点,从而与一台或多台计算机或者其他设备共享手机的互联网连接 + + + diff --git a/assets/html/zh_tw/tethering_help.html b/assets/html/zh_tw/tethering_help.html new file mode 100644 index 00000000000..15f69c079f4 --- /dev/null +++ b/assets/html/zh_tw/tethering_help.html @@ -0,0 +1,35 @@ + + + + + + +

USB 數據連線

+您可以使用 USB 纜線讓手機和電腦連線,使電腦可以共用手機的網際網路連線 + +

Wi-Fi 數據連線

+您可以將手機變成 Wi-Fi 存取點,讓一或多台電腦或其他裝置可以共用手機的網際網路連線 + + + diff --git a/assets/html/zh_tw/tethering_usb_help.html b/assets/html/zh_tw/tethering_usb_help.html new file mode 100644 index 00000000000..f1a20df31f4 --- /dev/null +++ b/assets/html/zh_tw/tethering_usb_help.html @@ -0,0 +1,28 @@ + + + + + + +

USB 數據連線

+您可以使用 USB 纜線讓手機和電腦連線,使電腦可以共用手機的網際網路連線 + + + diff --git a/assets/html/zh_tw/tethering_wifi_help.html b/assets/html/zh_tw/tethering_wifi_help.html new file mode 100644 index 00000000000..f91b1518954 --- /dev/null +++ b/assets/html/zh_tw/tethering_wifi_help.html @@ -0,0 +1,28 @@ + + + + + + +

Wi-Fi 數據連線

+您可以將手機變成 Wi-Fi 存取點,讓一或多台電腦或其他裝置可以共用手機的網際網路連線 + + + diff --git a/proguard.flags b/proguard.flags new file mode 100644 index 00000000000..6d41d17436e --- /dev/null +++ b/proguard.flags @@ -0,0 +1,14 @@ +# Keep all Fragments in this package, which are used by reflection. +-keep class com.android.settings.*Fragment +-keep class com.android.settings.*Picker +-keep class com.android.settings.*Settings +-keep class com.android.settings.wifi.*Settings +-keep class com.android.settings.deviceinfo.* +-keep class com.android.settings.bluetooth.* +-keep class com.android.settings.applications.* +-keep class com.android.settings.inputmethod.* +-keep class com.android.settings.MasterClear +-keep class com.android.settings.MasterClearConfirm +-keep class com.android.settings.accounts.* +-keep class com.android.settings.fuelgauge.* + diff --git a/res/drawable-hdpi-finger/ic_grabber.png b/res/drawable-hdpi-finger/ic_grabber.png new file mode 100644 index 00000000000..0ff8d1aa3f0 Binary files /dev/null and b/res/drawable-hdpi-finger/ic_grabber.png differ diff --git a/res/drawable-hdpi/app_gauge.9.png b/res/drawable-hdpi/app_gauge.9.png new file mode 100644 index 00000000000..ac79d21cdc1 Binary files /dev/null and b/res/drawable-hdpi/app_gauge.9.png differ diff --git a/res/drawable-hdpi/appwidget_bg_holo.9.png b/res/drawable-hdpi/appwidget_bg_holo.9.png new file mode 100644 index 00000000000..02ee4401f91 Binary files /dev/null and b/res/drawable-hdpi/appwidget_bg_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_inner_focused_c_holo.9.png b/res/drawable-hdpi/appwidget_inner_focused_c_holo.9.png new file mode 100644 index 00000000000..5aafacd9caf Binary files /dev/null and b/res/drawable-hdpi/appwidget_inner_focused_c_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_inner_focused_l_holo.9.png b/res/drawable-hdpi/appwidget_inner_focused_l_holo.9.png new file mode 100644 index 00000000000..ab6e8f31e8c Binary files /dev/null and b/res/drawable-hdpi/appwidget_inner_focused_l_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_inner_focused_r_holo.9.png b/res/drawable-hdpi/appwidget_inner_focused_r_holo.9.png new file mode 100644 index 00000000000..6c1b3c624e5 Binary files /dev/null and b/res/drawable-hdpi/appwidget_inner_focused_r_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_inner_pressed_c_holo.9.png b/res/drawable-hdpi/appwidget_inner_pressed_c_holo.9.png new file mode 100644 index 00000000000..470f5c03897 Binary files /dev/null and b/res/drawable-hdpi/appwidget_inner_pressed_c_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_inner_pressed_l_holo.9.png b/res/drawable-hdpi/appwidget_inner_pressed_l_holo.9.png new file mode 100644 index 00000000000..e3aa8db1a37 Binary files /dev/null and b/res/drawable-hdpi/appwidget_inner_pressed_l_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_inner_pressed_r_holo.9.png b/res/drawable-hdpi/appwidget_inner_pressed_r_holo.9.png new file mode 100644 index 00000000000..9e27d2fdc79 Binary files /dev/null and b/res/drawable-hdpi/appwidget_inner_pressed_r_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_divider_holo.9.png b/res/drawable-hdpi/appwidget_settings_divider_holo.9.png new file mode 100644 index 00000000000..02b4b8bc722 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_divider_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_ind_mid_c_holo.9.png b/res/drawable-hdpi/appwidget_settings_ind_mid_c_holo.9.png new file mode 100644 index 00000000000..be5394d84c9 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_ind_mid_c_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_ind_mid_l_holo.9.png b/res/drawable-hdpi/appwidget_settings_ind_mid_l_holo.9.png new file mode 100644 index 00000000000..06d16740780 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_ind_mid_l_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_ind_mid_r_holo.9.png b/res/drawable-hdpi/appwidget_settings_ind_mid_r_holo.9.png new file mode 100644 index 00000000000..20c5e10cb77 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_ind_mid_r_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_ind_off_c_holo.9.png b/res/drawable-hdpi/appwidget_settings_ind_off_c_holo.9.png new file mode 100644 index 00000000000..ed8f93eb151 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_ind_off_c_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_ind_off_l_holo.9.png b/res/drawable-hdpi/appwidget_settings_ind_off_l_holo.9.png new file mode 100644 index 00000000000..613396b57e2 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_ind_off_l_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_ind_off_r_holo.9.png b/res/drawable-hdpi/appwidget_settings_ind_off_r_holo.9.png new file mode 100644 index 00000000000..c1a15ced5c4 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_ind_off_r_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_ind_on_c_holo.9.png b/res/drawable-hdpi/appwidget_settings_ind_on_c_holo.9.png new file mode 100644 index 00000000000..04dd49899f5 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_ind_on_c_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_ind_on_l_holo.9.png b/res/drawable-hdpi/appwidget_settings_ind_on_l_holo.9.png new file mode 100644 index 00000000000..c3e15d2b9d2 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_ind_on_l_holo.9.png differ diff --git a/res/drawable-hdpi/appwidget_settings_ind_on_r_holo.9.png b/res/drawable-hdpi/appwidget_settings_ind_on_r_holo.9.png new file mode 100644 index 00000000000..673af628d89 Binary files /dev/null and b/res/drawable-hdpi/appwidget_settings_ind_on_r_holo.9.png differ diff --git a/res/drawable-hdpi/data_grid_border.9.png b/res/drawable-hdpi/data_grid_border.9.png new file mode 100644 index 00000000000..a857faeb38d Binary files /dev/null and b/res/drawable-hdpi/data_grid_border.9.png differ diff --git a/res/drawable-hdpi/data_grid_primary.9.png b/res/drawable-hdpi/data_grid_primary.9.png new file mode 100644 index 00000000000..93bdc6b7918 Binary files /dev/null and b/res/drawable-hdpi/data_grid_primary.9.png differ diff --git a/res/drawable-hdpi/data_grid_secondary.9.png b/res/drawable-hdpi/data_grid_secondary.9.png new file mode 100644 index 00000000000..23330d1770a Binary files /dev/null and b/res/drawable-hdpi/data_grid_secondary.9.png differ diff --git a/res/drawable-hdpi/data_sweep_left_activated.9.png b/res/drawable-hdpi/data_sweep_left_activated.9.png new file mode 100644 index 00000000000..7a18e204bde Binary files /dev/null and b/res/drawable-hdpi/data_sweep_left_activated.9.png differ diff --git a/res/drawable-hdpi/data_sweep_left_default.9.png b/res/drawable-hdpi/data_sweep_left_default.9.png new file mode 100644 index 00000000000..50881507aba Binary files /dev/null and b/res/drawable-hdpi/data_sweep_left_default.9.png differ diff --git a/res/drawable-hdpi/data_sweep_limit_activated.9.png b/res/drawable-hdpi/data_sweep_limit_activated.9.png new file mode 100644 index 00000000000..36be41aaba1 Binary files /dev/null and b/res/drawable-hdpi/data_sweep_limit_activated.9.png differ diff --git a/res/drawable-hdpi/data_sweep_limit_default.9.png b/res/drawable-hdpi/data_sweep_limit_default.9.png new file mode 100644 index 00000000000..658d1d9cb5a Binary files /dev/null and b/res/drawable-hdpi/data_sweep_limit_default.9.png differ diff --git a/res/drawable-hdpi/data_sweep_right_activated.9.png b/res/drawable-hdpi/data_sweep_right_activated.9.png new file mode 100644 index 00000000000..96ffbf6cccc Binary files /dev/null and b/res/drawable-hdpi/data_sweep_right_activated.9.png differ diff --git a/res/drawable-hdpi/data_sweep_right_default.9.png b/res/drawable-hdpi/data_sweep_right_default.9.png new file mode 100644 index 00000000000..22831a93025 Binary files /dev/null and b/res/drawable-hdpi/data_sweep_right_default.9.png differ diff --git a/res/drawable-hdpi/data_sweep_warning_activated.9.png b/res/drawable-hdpi/data_sweep_warning_activated.9.png new file mode 100644 index 00000000000..83b8a656642 Binary files /dev/null and b/res/drawable-hdpi/data_sweep_warning_activated.9.png differ diff --git a/res/drawable-hdpi/data_sweep_warning_default.9.png b/res/drawable-hdpi/data_sweep_warning_default.9.png new file mode 100644 index 00000000000..3b2c1a710f3 Binary files /dev/null and b/res/drawable-hdpi/data_sweep_warning_default.9.png differ diff --git a/res/drawable-hdpi/dotted_line_480px.png b/res/drawable-hdpi/dotted_line_480px.png new file mode 100644 index 00000000000..4c25bae3853 Binary files /dev/null and b/res/drawable-hdpi/dotted_line_480px.png differ diff --git a/res/drawable-hdpi/encroid_progress.png b/res/drawable-hdpi/encroid_progress.png new file mode 100644 index 00000000000..f4fb96105b3 Binary files /dev/null and b/res/drawable-hdpi/encroid_progress.png differ diff --git a/res/drawable-hdpi/encroid_resignin.png b/res/drawable-hdpi/encroid_resignin.png new file mode 100644 index 00000000000..d0e1082529b Binary files /dev/null and b/res/drawable-hdpi/encroid_resignin.png differ diff --git a/res/drawable-hdpi/encroid_waiting.png b/res/drawable-hdpi/encroid_waiting.png new file mode 100644 index 00000000000..1143cb7290f Binary files /dev/null and b/res/drawable-hdpi/encroid_waiting.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_bluetooth_off_holo.png b/res/drawable-hdpi/ic_appwidget_settings_bluetooth_off_holo.png new file mode 100644 index 00000000000..a45c3eaee51 Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_bluetooth_off_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_bluetooth_on_holo.png b/res/drawable-hdpi/ic_appwidget_settings_bluetooth_on_holo.png new file mode 100644 index 00000000000..102a50ee3ec Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_bluetooth_on_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_brightness_auto_holo.png b/res/drawable-hdpi/ic_appwidget_settings_brightness_auto_holo.png new file mode 100644 index 00000000000..9c826361bb8 Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_brightness_auto_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_brightness_full_holo.png b/res/drawable-hdpi/ic_appwidget_settings_brightness_full_holo.png new file mode 100644 index 00000000000..80a09800e6e Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_brightness_full_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_brightness_half_holo.png b/res/drawable-hdpi/ic_appwidget_settings_brightness_half_holo.png new file mode 100644 index 00000000000..3a5a043a739 Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_brightness_half_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_brightness_off_holo.png b/res/drawable-hdpi/ic_appwidget_settings_brightness_off_holo.png new file mode 100644 index 00000000000..0f25e1f0dcf Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_brightness_off_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_gps_off_holo.png b/res/drawable-hdpi/ic_appwidget_settings_gps_off_holo.png new file mode 100644 index 00000000000..cd3c61e2f6e Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_gps_off_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_gps_on_holo.png b/res/drawable-hdpi/ic_appwidget_settings_gps_on_holo.png new file mode 100644 index 00000000000..5138b70a175 Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_gps_on_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_sync_off_holo.png b/res/drawable-hdpi/ic_appwidget_settings_sync_off_holo.png new file mode 100644 index 00000000000..1c9079e394c Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_sync_off_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_sync_on_holo.png b/res/drawable-hdpi/ic_appwidget_settings_sync_on_holo.png new file mode 100644 index 00000000000..daddd54bd87 Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_sync_on_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_wifi_off_holo.png b/res/drawable-hdpi/ic_appwidget_settings_wifi_off_holo.png new file mode 100644 index 00000000000..0e0ccdabfa7 Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_wifi_off_holo.png differ diff --git a/res/drawable-hdpi/ic_appwidget_settings_wifi_on_holo.png b/res/drawable-hdpi/ic_appwidget_settings_wifi_on_holo.png new file mode 100644 index 00000000000..e095cf9bf8d Binary files /dev/null and b/res/drawable-hdpi/ic_appwidget_settings_wifi_on_holo.png differ diff --git a/res/drawable-hdpi/ic_bt_cellphone.png b/res/drawable-hdpi/ic_bt_cellphone.png new file mode 100644 index 00000000000..89200cbde13 Binary files /dev/null and b/res/drawable-hdpi/ic_bt_cellphone.png differ diff --git a/res/drawable-hdpi/ic_bt_config.png b/res/drawable-hdpi/ic_bt_config.png new file mode 100644 index 00000000000..47b4ba23f7a Binary files /dev/null and b/res/drawable-hdpi/ic_bt_config.png differ diff --git a/res/drawable-hdpi/ic_bt_headphones_a2dp.png b/res/drawable-hdpi/ic_bt_headphones_a2dp.png new file mode 100644 index 00000000000..4d154112d9d Binary files /dev/null and b/res/drawable-hdpi/ic_bt_headphones_a2dp.png differ diff --git a/res/drawable-hdpi/ic_bt_headset_hfp.png b/res/drawable-hdpi/ic_bt_headset_hfp.png new file mode 100644 index 00000000000..6e47d9d567d Binary files /dev/null and b/res/drawable-hdpi/ic_bt_headset_hfp.png differ diff --git a/res/drawable-hdpi/ic_bt_imaging.png b/res/drawable-hdpi/ic_bt_imaging.png new file mode 100644 index 00000000000..6d36e608a53 Binary files /dev/null and b/res/drawable-hdpi/ic_bt_imaging.png differ diff --git a/res/drawable-hdpi/ic_bt_keyboard_hid.png b/res/drawable-hdpi/ic_bt_keyboard_hid.png new file mode 100644 index 00000000000..a2bed50c6d0 Binary files /dev/null and b/res/drawable-hdpi/ic_bt_keyboard_hid.png differ diff --git a/res/drawable-hdpi/ic_bt_laptop.png b/res/drawable-hdpi/ic_bt_laptop.png new file mode 100644 index 00000000000..98276ef3cec Binary files /dev/null and b/res/drawable-hdpi/ic_bt_laptop.png differ diff --git a/res/drawable-hdpi/ic_bt_misc_hid.png b/res/drawable-hdpi/ic_bt_misc_hid.png new file mode 100644 index 00000000000..77776d144d2 Binary files /dev/null and b/res/drawable-hdpi/ic_bt_misc_hid.png differ diff --git a/res/drawable-hdpi/ic_bt_network_pan.png b/res/drawable-hdpi/ic_bt_network_pan.png new file mode 100644 index 00000000000..dfd77fba78c Binary files /dev/null and b/res/drawable-hdpi/ic_bt_network_pan.png differ diff --git a/res/drawable-hdpi/ic_bt_pointing_hid.png b/res/drawable-hdpi/ic_bt_pointing_hid.png new file mode 100644 index 00000000000..11f10396a02 Binary files /dev/null and b/res/drawable-hdpi/ic_bt_pointing_hid.png differ diff --git a/res/drawable-hdpi/ic_btn_next.png b/res/drawable-hdpi/ic_btn_next.png new file mode 100644 index 00000000000..ad00a956a8e Binary files /dev/null and b/res/drawable-hdpi/ic_btn_next.png differ diff --git a/res/drawable-hdpi/ic_cm_stats_notif.png b/res/drawable-hdpi/ic_cm_stats_notif.png new file mode 100644 index 00000000000..66fa7c01a1c Binary files /dev/null and b/res/drawable-hdpi/ic_cm_stats_notif.png differ diff --git a/res/drawable-hdpi/ic_emergency.png b/res/drawable-hdpi/ic_emergency.png new file mode 100644 index 00000000000..89c05e36049 Binary files /dev/null and b/res/drawable-hdpi/ic_emergency.png differ diff --git a/res/drawable-hdpi/ic_empty.png b/res/drawable-hdpi/ic_empty.png new file mode 100644 index 00000000000..a45c6cfca43 Binary files /dev/null and b/res/drawable-hdpi/ic_empty.png differ diff --git a/res/drawable-hdpi/ic_item_delete.png b/res/drawable-hdpi/ic_item_delete.png new file mode 100644 index 00000000000..f3e53d7596c Binary files /dev/null and b/res/drawable-hdpi/ic_item_delete.png differ diff --git a/res/drawable-hdpi/ic_launcher_settings.png b/res/drawable-hdpi/ic_launcher_settings.png new file mode 100644 index 00000000000..c02bd424f51 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_settings.png differ diff --git a/res/drawable-hdpi/ic_lockscreen_ime.png b/res/drawable-hdpi/ic_lockscreen_ime.png new file mode 100644 index 00000000000..29a7989372f Binary files /dev/null and b/res/drawable-hdpi/ic_lockscreen_ime.png differ diff --git a/res/drawable-hdpi/ic_menu_3d_globe.png b/res/drawable-hdpi/ic_menu_3d_globe.png new file mode 100644 index 00000000000..1b55f0913fc Binary files /dev/null and b/res/drawable-hdpi/ic_menu_3d_globe.png differ diff --git a/res/drawable-hdpi/ic_menu_add.png b/res/drawable-hdpi/ic_menu_add.png new file mode 100644 index 00000000000..9f7d9820260 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_add.png differ diff --git a/res/drawable-hdpi/ic_menu_delete_holo_dark.png b/res/drawable-hdpi/ic_menu_delete_holo_dark.png new file mode 100644 index 00000000000..92c0954f721 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_delete_holo_dark.png differ diff --git a/res/drawable-hdpi/ic_menu_nfc_writer_dark.png b/res/drawable-hdpi/ic_menu_nfc_writer_dark.png new file mode 100644 index 00000000000..88fe43798ef Binary files /dev/null and b/res/drawable-hdpi/ic_menu_nfc_writer_dark.png differ diff --git a/res/drawable-hdpi/ic_menu_refresh_holo_dark.png b/res/drawable-hdpi/ic_menu_refresh_holo_dark.png new file mode 100644 index 00000000000..69ac31be312 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_refresh_holo_dark.png differ diff --git a/res/drawable/ic_menu_scan_network.png b/res/drawable-hdpi/ic_menu_save.png similarity index 50% rename from res/drawable/ic_menu_scan_network.png rename to res/drawable-hdpi/ic_menu_save.png index eed82a26220..2b29557ab52 100644 Binary files a/res/drawable/ic_menu_scan_network.png and b/res/drawable-hdpi/ic_menu_save.png differ diff --git a/res/drawable-hdpi/ic_menu_scan_network.png b/res/drawable-hdpi/ic_menu_scan_network.png new file mode 100644 index 00000000000..5547d312446 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_scan_network.png differ diff --git a/res/drawable-hdpi/ic_menu_trash_holo_dark.png b/res/drawable-hdpi/ic_menu_trash_holo_dark.png new file mode 100644 index 00000000000..c7a0832e211 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_trash_holo_dark.png differ diff --git a/res/drawable-hdpi/ic_network_signal_0.png b/res/drawable-hdpi/ic_network_signal_0.png new file mode 100644 index 00000000000..1629ae66aeb Binary files /dev/null and b/res/drawable-hdpi/ic_network_signal_0.png differ diff --git a/res/drawable-hdpi/ic_network_signal_1.png b/res/drawable-hdpi/ic_network_signal_1.png new file mode 100644 index 00000000000..162ade24514 Binary files /dev/null and b/res/drawable-hdpi/ic_network_signal_1.png differ diff --git a/res/drawable-hdpi/ic_network_signal_2.png b/res/drawable-hdpi/ic_network_signal_2.png new file mode 100644 index 00000000000..d91273cfec7 Binary files /dev/null and b/res/drawable-hdpi/ic_network_signal_2.png differ diff --git a/res/drawable-hdpi/ic_network_signal_3.png b/res/drawable-hdpi/ic_network_signal_3.png new file mode 100644 index 00000000000..5634bc92a55 Binary files /dev/null and b/res/drawable-hdpi/ic_network_signal_3.png differ diff --git a/res/drawable-hdpi/ic_network_signal_4.png b/res/drawable-hdpi/ic_network_signal_4.png new file mode 100644 index 00000000000..f04616d3570 Binary files /dev/null and b/res/drawable-hdpi/ic_network_signal_4.png differ diff --git a/res/drawable-hdpi/ic_power_system.png b/res/drawable-hdpi/ic_power_system.png new file mode 100644 index 00000000000..5e7cf99ad5d Binary files /dev/null and b/res/drawable-hdpi/ic_power_system.png differ diff --git a/res/drawable-hdpi/ic_settings_about.png b/res/drawable-hdpi/ic_settings_about.png new file mode 100755 index 00000000000..ace754bb156 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_about.png differ diff --git a/res/drawable-hdpi/ic_settings_accessibility.png b/res/drawable-hdpi/ic_settings_accessibility.png new file mode 100755 index 00000000000..849c19ce93a Binary files /dev/null and b/res/drawable-hdpi/ic_settings_accessibility.png differ diff --git a/res/drawable-hdpi/ic_settings_advanced.png b/res/drawable-hdpi/ic_settings_advanced.png new file mode 100644 index 00000000000..6d48b8a07e2 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_advanced.png differ diff --git a/res/drawable-hdpi/ic_settings_applications.png b/res/drawable-hdpi/ic_settings_applications.png new file mode 100644 index 00000000000..4d3f128ddde Binary files /dev/null and b/res/drawable-hdpi/ic_settings_applications.png differ diff --git a/res/drawable-hdpi/ic_settings_backup.png b/res/drawable-hdpi/ic_settings_backup.png new file mode 100644 index 00000000000..ef764c77b53 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_backup.png differ diff --git a/res/drawable-hdpi/ic_settings_battery.png b/res/drawable-hdpi/ic_settings_battery.png new file mode 100644 index 00000000000..fe57826d457 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_battery.png differ diff --git a/res/drawable-hdpi/ic_settings_bluetooth.png b/res/drawable-hdpi/ic_settings_bluetooth.png new file mode 100644 index 00000000000..3d9015fc862 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_bluetooth.png differ diff --git a/res/drawable-hdpi/ic_settings_bluetooth2.png b/res/drawable-hdpi/ic_settings_bluetooth2.png new file mode 100644 index 00000000000..454b5525dea Binary files /dev/null and b/res/drawable-hdpi/ic_settings_bluetooth2.png differ diff --git a/res/drawable-hdpi/ic_settings_cell_standby.png b/res/drawable-hdpi/ic_settings_cell_standby.png new file mode 100644 index 00000000000..262a8609387 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_cell_standby.png differ diff --git a/res/drawable-hdpi/ic_settings_cmlauncher.png b/res/drawable-hdpi/ic_settings_cmlauncher.png new file mode 100644 index 00000000000..bbbe72c6825 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_cmlauncher.png differ diff --git a/res/drawable-hdpi/ic_settings_cmsettings.png b/res/drawable-hdpi/ic_settings_cmsettings.png new file mode 100644 index 00000000000..156194bf84e Binary files /dev/null and b/res/drawable-hdpi/ic_settings_cmsettings.png differ diff --git a/res/drawable-hdpi/ic_settings_data_usage.png b/res/drawable-hdpi/ic_settings_data_usage.png new file mode 100644 index 00000000000..a8af00edbc5 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_data_usage.png differ diff --git a/res/drawable-hdpi/ic_settings_date_time.png b/res/drawable-hdpi/ic_settings_date_time.png new file mode 100755 index 00000000000..65f909a36ff Binary files /dev/null and b/res/drawable-hdpi/ic_settings_date_time.png differ diff --git a/res/drawable-hdpi/ic_settings_development.png b/res/drawable-hdpi/ic_settings_development.png new file mode 100644 index 00000000000..bbc702b39fe Binary files /dev/null and b/res/drawable-hdpi/ic_settings_development.png differ diff --git a/res/drawable-hdpi/ic_settings_display.png b/res/drawable-hdpi/ic_settings_display.png new file mode 100644 index 00000000000..e0b31738e28 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_display.png differ diff --git a/res/drawable-hdpi/ic_settings_dock.png b/res/drawable-hdpi/ic_settings_dock.png new file mode 100644 index 00000000000..1fff7588243 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_dock.png differ diff --git a/res/drawable-hdpi/ic_settings_language.png b/res/drawable-hdpi/ic_settings_language.png new file mode 100755 index 00000000000..f635b2e7a0b Binary files /dev/null and b/res/drawable-hdpi/ic_settings_language.png differ diff --git a/res/drawable-hdpi/ic_settings_location.png b/res/drawable-hdpi/ic_settings_location.png new file mode 100644 index 00000000000..dcd0f4eaaa8 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_location.png differ diff --git a/res/drawable-hdpi/ic_settings_lockscreen.png b/res/drawable-hdpi/ic_settings_lockscreen.png new file mode 100644 index 00000000000..a08d5133607 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_lockscreen.png differ diff --git a/res/drawable-hdpi/ic_settings_performance.png b/res/drawable-hdpi/ic_settings_performance.png new file mode 100644 index 00000000000..d5694199a22 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_performance.png differ diff --git a/res/drawable-hdpi/ic_settings_phone_idle.png b/res/drawable-hdpi/ic_settings_phone_idle.png new file mode 100644 index 00000000000..fd66f84acfe Binary files /dev/null and b/res/drawable-hdpi/ic_settings_phone_idle.png differ diff --git a/res/drawable-hdpi/ic_settings_placeholder.png b/res/drawable-hdpi/ic_settings_placeholder.png new file mode 100644 index 00000000000..52640b0fc87 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_placeholder.png differ diff --git a/res/drawable-hdpi/ic_settings_profiles.png b/res/drawable-hdpi/ic_settings_profiles.png new file mode 100644 index 00000000000..f47568d908f Binary files /dev/null and b/res/drawable-hdpi/ic_settings_profiles.png differ diff --git a/res/drawable-hdpi/ic_settings_security.png b/res/drawable-hdpi/ic_settings_security.png new file mode 100644 index 00000000000..6ea7562b3ba Binary files /dev/null and b/res/drawable-hdpi/ic_settings_security.png differ diff --git a/res/drawable-hdpi/ic_settings_sound.png b/res/drawable-hdpi/ic_settings_sound.png new file mode 100755 index 00000000000..42354cd7c2f Binary files /dev/null and b/res/drawable-hdpi/ic_settings_sound.png differ diff --git a/res/drawable-hdpi/ic_settings_storage.png b/res/drawable-hdpi/ic_settings_storage.png new file mode 100644 index 00000000000..59c704236cb Binary files /dev/null and b/res/drawable-hdpi/ic_settings_storage.png differ diff --git a/res/drawable-hdpi/ic_settings_sync.png b/res/drawable-hdpi/ic_settings_sync.png new file mode 100755 index 00000000000..cab240510ec Binary files /dev/null and b/res/drawable-hdpi/ic_settings_sync.png differ diff --git a/res/drawable-hdpi/ic_settings_system.png b/res/drawable-hdpi/ic_settings_system.png new file mode 100644 index 00000000000..920b65ec56c Binary files /dev/null and b/res/drawable-hdpi/ic_settings_system.png differ diff --git a/res/drawable-hdpi/ic_settings_themes.png b/res/drawable-hdpi/ic_settings_themes.png new file mode 100644 index 00000000000..3e0d2cabfca Binary files /dev/null and b/res/drawable-hdpi/ic_settings_themes.png differ diff --git a/res/drawable-hdpi/ic_settings_voice_calls.png b/res/drawable-hdpi/ic_settings_voice_calls.png new file mode 100644 index 00000000000..3cb7e49025c Binary files /dev/null and b/res/drawable-hdpi/ic_settings_voice_calls.png differ diff --git a/res/drawable-hdpi/ic_settings_wifi.png b/res/drawable-hdpi/ic_settings_wifi.png new file mode 100644 index 00000000000..b8c3eaad35c Binary files /dev/null and b/res/drawable-hdpi/ic_settings_wifi.png differ diff --git a/res/drawable-hdpi/ic_settings_wireless.png b/res/drawable-hdpi/ic_settings_wireless.png new file mode 100644 index 00000000000..faed9e318d1 Binary files /dev/null and b/res/drawable-hdpi/ic_settings_wireless.png differ diff --git a/res/drawable-hdpi/ic_sync_anim_holo.png b/res/drawable-hdpi/ic_sync_anim_holo.png new file mode 100644 index 00000000000..bc8dc58eb68 Binary files /dev/null and b/res/drawable-hdpi/ic_sync_anim_holo.png differ diff --git a/res/drawable-hdpi/ic_sync_error.png b/res/drawable-hdpi/ic_sync_error.png new file mode 100644 index 00000000000..914d44df64b Binary files /dev/null and b/res/drawable-hdpi/ic_sync_error.png differ diff --git a/res/drawable-hdpi/ic_sync_error_holo.png b/res/drawable-hdpi/ic_sync_error_holo.png new file mode 100644 index 00000000000..3e34bd0919b Binary files /dev/null and b/res/drawable-hdpi/ic_sync_error_holo.png differ diff --git a/res/drawable-hdpi/ic_sync_green.png b/res/drawable-hdpi/ic_sync_green.png new file mode 100644 index 00000000000..69560887ed9 Binary files /dev/null and b/res/drawable-hdpi/ic_sync_green.png differ diff --git a/res/drawable-hdpi/ic_sync_green_holo.png b/res/drawable-hdpi/ic_sync_green_holo.png new file mode 100644 index 00000000000..2588f3d61da Binary files /dev/null and b/res/drawable-hdpi/ic_sync_green_holo.png differ diff --git a/res/drawable-hdpi/ic_sync_grey.png b/res/drawable-hdpi/ic_sync_grey.png new file mode 100644 index 00000000000..3e9995a38e9 Binary files /dev/null and b/res/drawable-hdpi/ic_sync_grey.png differ diff --git a/res/drawable-hdpi/ic_sync_grey_holo.png b/res/drawable-hdpi/ic_sync_grey_holo.png new file mode 100644 index 00000000000..4c7060d9173 Binary files /dev/null and b/res/drawable-hdpi/ic_sync_grey_holo.png differ diff --git a/res/drawable-hdpi/ic_sync_red.png b/res/drawable-hdpi/ic_sync_red.png new file mode 100644 index 00000000000..5abb707b424 Binary files /dev/null and b/res/drawable-hdpi/ic_sync_red.png differ diff --git a/res/drawable-hdpi/ic_sync_red_holo.png b/res/drawable-hdpi/ic_sync_red_holo.png new file mode 100644 index 00000000000..b65520dcaf2 Binary files /dev/null and b/res/drawable-hdpi/ic_sync_red_holo.png differ diff --git a/res/drawable-hdpi/ic_sysbar_quicksettings.png b/res/drawable-hdpi/ic_sysbar_quicksettings.png new file mode 100644 index 00000000000..47b4ba23f7a Binary files /dev/null and b/res/drawable-hdpi/ic_sysbar_quicksettings.png differ diff --git a/res/drawable-hdpi/ic_tab_selected_all.png b/res/drawable-hdpi/ic_tab_selected_all.png new file mode 100644 index 00000000000..c168869c86b Binary files /dev/null and b/res/drawable-hdpi/ic_tab_selected_all.png differ diff --git a/res/drawable-hdpi/ic_tab_selected_download.png b/res/drawable-hdpi/ic_tab_selected_download.png new file mode 100644 index 00000000000..39d29381050 Binary files /dev/null and b/res/drawable-hdpi/ic_tab_selected_download.png differ diff --git a/res/drawable-hdpi/ic_tab_selected_running.png b/res/drawable-hdpi/ic_tab_selected_running.png new file mode 100644 index 00000000000..a73d07844c2 Binary files /dev/null and b/res/drawable-hdpi/ic_tab_selected_running.png differ diff --git a/res/drawable-hdpi/ic_tab_selected_sdcard.png b/res/drawable-hdpi/ic_tab_selected_sdcard.png new file mode 100644 index 00000000000..752c35d704b Binary files /dev/null and b/res/drawable-hdpi/ic_tab_selected_sdcard.png differ diff --git a/res/drawable-hdpi/ic_tab_unselected_all.png b/res/drawable-hdpi/ic_tab_unselected_all.png new file mode 100644 index 00000000000..c168869c86b Binary files /dev/null and b/res/drawable-hdpi/ic_tab_unselected_all.png differ diff --git a/res/drawable-hdpi/ic_tab_unselected_download.png b/res/drawable-hdpi/ic_tab_unselected_download.png new file mode 100644 index 00000000000..39d29381050 Binary files /dev/null and b/res/drawable-hdpi/ic_tab_unselected_download.png differ diff --git a/res/drawable-hdpi/ic_tab_unselected_running.png b/res/drawable-hdpi/ic_tab_unselected_running.png new file mode 100644 index 00000000000..a73d07844c2 Binary files /dev/null and b/res/drawable-hdpi/ic_tab_unselected_running.png differ diff --git a/res/drawable-hdpi/ic_tab_unselected_sdcard.png b/res/drawable-hdpi/ic_tab_unselected_sdcard.png new file mode 100644 index 00000000000..752c35d704b Binary files /dev/null and b/res/drawable-hdpi/ic_tab_unselected_sdcard.png differ diff --git a/res/drawable-hdpi/ic_wifi_lock_signal_1.png b/res/drawable-hdpi/ic_wifi_lock_signal_1.png new file mode 100644 index 00000000000..60857b3b7ac Binary files /dev/null and b/res/drawable-hdpi/ic_wifi_lock_signal_1.png differ diff --git a/res/drawable-hdpi/ic_wifi_lock_signal_2.png b/res/drawable-hdpi/ic_wifi_lock_signal_2.png new file mode 100644 index 00000000000..5e1f118a5b8 Binary files /dev/null and b/res/drawable-hdpi/ic_wifi_lock_signal_2.png differ diff --git a/res/drawable-hdpi/ic_wifi_lock_signal_3.png b/res/drawable-hdpi/ic_wifi_lock_signal_3.png new file mode 100644 index 00000000000..490bd584dc9 Binary files /dev/null and b/res/drawable-hdpi/ic_wifi_lock_signal_3.png differ diff --git a/res/drawable-hdpi/ic_wifi_lock_signal_4.png b/res/drawable-hdpi/ic_wifi_lock_signal_4.png new file mode 100644 index 00000000000..e5fa8d1c0b0 Binary files /dev/null and b/res/drawable-hdpi/ic_wifi_lock_signal_4.png differ diff --git a/res/drawable-hdpi/ic_wifi_signal_1.png b/res/drawable-hdpi/ic_wifi_signal_1.png new file mode 100644 index 00000000000..de9162ba567 Binary files /dev/null and b/res/drawable-hdpi/ic_wifi_signal_1.png differ diff --git a/res/drawable-hdpi/ic_wifi_signal_2.png b/res/drawable-hdpi/ic_wifi_signal_2.png new file mode 100644 index 00000000000..4c7559c3df8 Binary files /dev/null and b/res/drawable-hdpi/ic_wifi_signal_2.png differ diff --git a/res/drawable-hdpi/ic_wifi_signal_3.png b/res/drawable-hdpi/ic_wifi_signal_3.png new file mode 100644 index 00000000000..2d763246b8f Binary files /dev/null and b/res/drawable-hdpi/ic_wifi_signal_3.png differ diff --git a/res/drawable-hdpi/ic_wifi_signal_4.png b/res/drawable-hdpi/ic_wifi_signal_4.png new file mode 100644 index 00000000000..bd50fd7d14f Binary files /dev/null and b/res/drawable-hdpi/ic_wifi_signal_4.png differ diff --git a/res/drawable-hdpi/lock_anim_0.png b/res/drawable-hdpi/lock_anim_0.png new file mode 100644 index 00000000000..08732e44f7b Binary files /dev/null and b/res/drawable-hdpi/lock_anim_0.png differ diff --git a/res/drawable-hdpi/lock_anim_1.png b/res/drawable-hdpi/lock_anim_1.png new file mode 100644 index 00000000000..74a0628dd14 Binary files /dev/null and b/res/drawable-hdpi/lock_anim_1.png differ diff --git a/res/drawable-hdpi/lock_anim_10.png b/res/drawable-hdpi/lock_anim_10.png new file mode 100644 index 00000000000..adb981d257e Binary files /dev/null and b/res/drawable-hdpi/lock_anim_10.png differ diff --git a/res/drawable-hdpi/lock_anim_11.png b/res/drawable-hdpi/lock_anim_11.png new file mode 100644 index 00000000000..f8976a235ac Binary files /dev/null and b/res/drawable-hdpi/lock_anim_11.png differ diff --git a/res/drawable-hdpi/lock_anim_12.png b/res/drawable-hdpi/lock_anim_12.png new file mode 100644 index 00000000000..3ccdc850b20 Binary files /dev/null and b/res/drawable-hdpi/lock_anim_12.png differ diff --git a/res/drawable-hdpi/lock_anim_13.png b/res/drawable-hdpi/lock_anim_13.png new file mode 100644 index 00000000000..ccd38d58636 Binary files /dev/null and b/res/drawable-hdpi/lock_anim_13.png differ diff --git a/res/drawable-hdpi/lock_anim_14.png b/res/drawable-hdpi/lock_anim_14.png new file mode 100644 index 00000000000..2f40d9e4996 Binary files /dev/null and b/res/drawable-hdpi/lock_anim_14.png differ diff --git a/res/drawable-hdpi/lock_anim_2.png b/res/drawable-hdpi/lock_anim_2.png new file mode 100644 index 00000000000..495b2da490a Binary files /dev/null and b/res/drawable-hdpi/lock_anim_2.png differ diff --git a/res/drawable-hdpi/lock_anim_3.png b/res/drawable-hdpi/lock_anim_3.png new file mode 100644 index 00000000000..fa378135b21 Binary files /dev/null and b/res/drawable-hdpi/lock_anim_3.png differ diff --git a/res/drawable-hdpi/lock_anim_4.png b/res/drawable-hdpi/lock_anim_4.png new file mode 100644 index 00000000000..8201fd94d54 Binary files /dev/null and b/res/drawable-hdpi/lock_anim_4.png differ diff --git a/res/drawable-hdpi/lock_anim_5.png b/res/drawable-hdpi/lock_anim_5.png new file mode 100644 index 00000000000..b08932d04e2 Binary files /dev/null and b/res/drawable-hdpi/lock_anim_5.png differ diff --git a/res/drawable-hdpi/lock_anim_6.png b/res/drawable-hdpi/lock_anim_6.png new file mode 100644 index 00000000000..dac09e1573c Binary files /dev/null and b/res/drawable-hdpi/lock_anim_6.png differ diff --git a/res/drawable-hdpi/lock_anim_7.png b/res/drawable-hdpi/lock_anim_7.png new file mode 100644 index 00000000000..f06c9d6fa0e Binary files /dev/null and b/res/drawable-hdpi/lock_anim_7.png differ diff --git a/res/drawable-hdpi/lock_anim_8.png b/res/drawable-hdpi/lock_anim_8.png new file mode 100644 index 00000000000..07f7e347728 Binary files /dev/null and b/res/drawable-hdpi/lock_anim_8.png differ diff --git a/res/drawable-hdpi/lock_anim_9.png b/res/drawable-hdpi/lock_anim_9.png new file mode 100644 index 00000000000..551bafa4fa4 Binary files /dev/null and b/res/drawable-hdpi/lock_anim_9.png differ diff --git a/res/drawable-hdpi/nav_divider.png b/res/drawable-hdpi/nav_divider.png new file mode 100644 index 00000000000..b1f035c93d9 Binary files /dev/null and b/res/drawable-hdpi/nav_divider.png differ diff --git a/res/drawable-hdpi/nfc_writer.png b/res/drawable-hdpi/nfc_writer.png new file mode 100644 index 00000000000..873e721ec2d Binary files /dev/null and b/res/drawable-hdpi/nfc_writer.png differ diff --git a/res/drawable-hdpi/password_field_default.9.png b/res/drawable-hdpi/password_field_default.9.png new file mode 100644 index 00000000000..2c424f061d0 Binary files /dev/null and b/res/drawable-hdpi/password_field_default.9.png differ diff --git a/res/drawable-hdpi/stat_navbar_edit_off.png b/res/drawable-hdpi/stat_navbar_edit_off.png new file mode 100644 index 00000000000..d796bde5667 Binary files /dev/null and b/res/drawable-hdpi/stat_navbar_edit_off.png differ diff --git a/res/drawable-hdpi/stat_navbar_edit_on.png b/res/drawable-hdpi/stat_navbar_edit_on.png new file mode 100644 index 00000000000..263c0ed9586 Binary files /dev/null and b/res/drawable-hdpi/stat_navbar_edit_on.png differ diff --git a/res/drawable-hdpi/stat_sys_phone_call.png b/res/drawable-hdpi/stat_sys_phone_call.png new file mode 100755 index 00000000000..9b5f07576cc Binary files /dev/null and b/res/drawable-hdpi/stat_sys_phone_call.png differ diff --git a/res/drawable-mdpi-finger/ic_grabber.png b/res/drawable-mdpi-finger/ic_grabber.png new file mode 100755 index 00000000000..9169ae57b53 Binary files /dev/null and b/res/drawable-mdpi-finger/ic_grabber.png differ diff --git a/res/drawable/app_gauge.9.png b/res/drawable-mdpi/app_gauge.9.png similarity index 100% rename from res/drawable/app_gauge.9.png rename to res/drawable-mdpi/app_gauge.9.png diff --git a/res/drawable-mdpi/appwidget_bg_holo.9.png b/res/drawable-mdpi/appwidget_bg_holo.9.png new file mode 100644 index 00000000000..a245d917797 Binary files /dev/null and b/res/drawable-mdpi/appwidget_bg_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_inner_focused_c_holo.9.png b/res/drawable-mdpi/appwidget_inner_focused_c_holo.9.png new file mode 100644 index 00000000000..cc50fe9be6c Binary files /dev/null and b/res/drawable-mdpi/appwidget_inner_focused_c_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_inner_focused_l_holo.9.png b/res/drawable-mdpi/appwidget_inner_focused_l_holo.9.png new file mode 100644 index 00000000000..feaa6c78584 Binary files /dev/null and b/res/drawable-mdpi/appwidget_inner_focused_l_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_inner_focused_r_holo.9.png b/res/drawable-mdpi/appwidget_inner_focused_r_holo.9.png new file mode 100644 index 00000000000..8d22c56178e Binary files /dev/null and b/res/drawable-mdpi/appwidget_inner_focused_r_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_inner_pressed_c_holo.9.png b/res/drawable-mdpi/appwidget_inner_pressed_c_holo.9.png new file mode 100644 index 00000000000..aa80a7c70e7 Binary files /dev/null and b/res/drawable-mdpi/appwidget_inner_pressed_c_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_inner_pressed_l_holo.9.png b/res/drawable-mdpi/appwidget_inner_pressed_l_holo.9.png new file mode 100644 index 00000000000..e49e8a9b89d Binary files /dev/null and b/res/drawable-mdpi/appwidget_inner_pressed_l_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_inner_pressed_r_holo.9.png b/res/drawable-mdpi/appwidget_inner_pressed_r_holo.9.png new file mode 100644 index 00000000000..a54ecd0da36 Binary files /dev/null and b/res/drawable-mdpi/appwidget_inner_pressed_r_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_divider_holo.9.png b/res/drawable-mdpi/appwidget_settings_divider_holo.9.png new file mode 100644 index 00000000000..64cf53e2c69 Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_divider_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_ind_mid_c_holo.9.png b/res/drawable-mdpi/appwidget_settings_ind_mid_c_holo.9.png new file mode 100644 index 00000000000..64aed4f14ed Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_ind_mid_c_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_ind_mid_l_holo.9.png b/res/drawable-mdpi/appwidget_settings_ind_mid_l_holo.9.png new file mode 100644 index 00000000000..2b64ac04540 Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_ind_mid_l_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_ind_mid_r_holo.9.png b/res/drawable-mdpi/appwidget_settings_ind_mid_r_holo.9.png new file mode 100644 index 00000000000..62ac4bb0fe6 Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_ind_mid_r_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_ind_off_c_holo.9.png b/res/drawable-mdpi/appwidget_settings_ind_off_c_holo.9.png new file mode 100644 index 00000000000..0569da7d361 Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_ind_off_c_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_ind_off_l_holo.9.png b/res/drawable-mdpi/appwidget_settings_ind_off_l_holo.9.png new file mode 100644 index 00000000000..9f6fdf8b9e9 Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_ind_off_l_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_ind_off_r_holo.9.png b/res/drawable-mdpi/appwidget_settings_ind_off_r_holo.9.png new file mode 100644 index 00000000000..94adf5e02cd Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_ind_off_r_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_ind_on_c_holo.9.png b/res/drawable-mdpi/appwidget_settings_ind_on_c_holo.9.png new file mode 100644 index 00000000000..a02deec86c6 Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_ind_on_c_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_ind_on_l_holo.9.png b/res/drawable-mdpi/appwidget_settings_ind_on_l_holo.9.png new file mode 100644 index 00000000000..55a63868bed Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_ind_on_l_holo.9.png differ diff --git a/res/drawable-mdpi/appwidget_settings_ind_on_r_holo.9.png b/res/drawable-mdpi/appwidget_settings_ind_on_r_holo.9.png new file mode 100644 index 00000000000..fa4c4f04a80 Binary files /dev/null and b/res/drawable-mdpi/appwidget_settings_ind_on_r_holo.9.png differ diff --git a/res/drawable-mdpi/data_grid_border.9.png b/res/drawable-mdpi/data_grid_border.9.png new file mode 100644 index 00000000000..699c513a5c2 Binary files /dev/null and b/res/drawable-mdpi/data_grid_border.9.png differ diff --git a/res/drawable-mdpi/data_grid_primary.9.png b/res/drawable-mdpi/data_grid_primary.9.png new file mode 100644 index 00000000000..83411cf725a Binary files /dev/null and b/res/drawable-mdpi/data_grid_primary.9.png differ diff --git a/res/drawable-mdpi/data_grid_secondary.9.png b/res/drawable-mdpi/data_grid_secondary.9.png new file mode 100644 index 00000000000..23330d1770a Binary files /dev/null and b/res/drawable-mdpi/data_grid_secondary.9.png differ diff --git a/res/drawable-mdpi/data_sweep_left_activated.9.png b/res/drawable-mdpi/data_sweep_left_activated.9.png new file mode 100644 index 00000000000..10c0687573d Binary files /dev/null and b/res/drawable-mdpi/data_sweep_left_activated.9.png differ diff --git a/res/drawable-mdpi/data_sweep_left_default.9.png b/res/drawable-mdpi/data_sweep_left_default.9.png new file mode 100644 index 00000000000..397c45948d2 Binary files /dev/null and b/res/drawable-mdpi/data_sweep_left_default.9.png differ diff --git a/res/drawable-mdpi/data_sweep_limit_activated.9.png b/res/drawable-mdpi/data_sweep_limit_activated.9.png new file mode 100644 index 00000000000..924384ffb69 Binary files /dev/null and b/res/drawable-mdpi/data_sweep_limit_activated.9.png differ diff --git a/res/drawable-mdpi/data_sweep_limit_default.9.png b/res/drawable-mdpi/data_sweep_limit_default.9.png new file mode 100644 index 00000000000..2b8c4cb780c Binary files /dev/null and b/res/drawable-mdpi/data_sweep_limit_default.9.png differ diff --git a/res/drawable-mdpi/data_sweep_right_activated.9.png b/res/drawable-mdpi/data_sweep_right_activated.9.png new file mode 100644 index 00000000000..5dfe594bd3a Binary files /dev/null and b/res/drawable-mdpi/data_sweep_right_activated.9.png differ diff --git a/res/drawable-mdpi/data_sweep_right_default.9.png b/res/drawable-mdpi/data_sweep_right_default.9.png new file mode 100644 index 00000000000..5b8e10843ac Binary files /dev/null and b/res/drawable-mdpi/data_sweep_right_default.9.png differ diff --git a/res/drawable-mdpi/data_sweep_warning_activated.9.png b/res/drawable-mdpi/data_sweep_warning_activated.9.png new file mode 100644 index 00000000000..97f93da113b Binary files /dev/null and b/res/drawable-mdpi/data_sweep_warning_activated.9.png differ diff --git a/res/drawable-mdpi/data_sweep_warning_default.9.png b/res/drawable-mdpi/data_sweep_warning_default.9.png new file mode 100644 index 00000000000..5f65750e8b7 Binary files /dev/null and b/res/drawable-mdpi/data_sweep_warning_default.9.png differ diff --git a/res/drawable/dotted_line_480px.png b/res/drawable-mdpi/dotted_line_480px.png similarity index 100% rename from res/drawable/dotted_line_480px.png rename to res/drawable-mdpi/dotted_line_480px.png diff --git a/res/drawable-mdpi/encroid_progress.png b/res/drawable-mdpi/encroid_progress.png new file mode 100644 index 00000000000..e832c2a4d6b Binary files /dev/null and b/res/drawable-mdpi/encroid_progress.png differ diff --git a/res/drawable-mdpi/encroid_resignin.png b/res/drawable-mdpi/encroid_resignin.png new file mode 100644 index 00000000000..70be860522f Binary files /dev/null and b/res/drawable-mdpi/encroid_resignin.png differ diff --git a/res/drawable-mdpi/encroid_waiting.png b/res/drawable-mdpi/encroid_waiting.png new file mode 100644 index 00000000000..a9ac2f77258 Binary files /dev/null and b/res/drawable-mdpi/encroid_waiting.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_bluetooth_off_holo.png b/res/drawable-mdpi/ic_appwidget_settings_bluetooth_off_holo.png new file mode 100644 index 00000000000..358306341eb Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_bluetooth_off_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_bluetooth_on_holo.png b/res/drawable-mdpi/ic_appwidget_settings_bluetooth_on_holo.png new file mode 100644 index 00000000000..c01ffb28af5 Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_bluetooth_on_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_brightness_auto_holo.png b/res/drawable-mdpi/ic_appwidget_settings_brightness_auto_holo.png new file mode 100644 index 00000000000..9cebeb38a5a Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_brightness_auto_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_brightness_full_holo.png b/res/drawable-mdpi/ic_appwidget_settings_brightness_full_holo.png new file mode 100644 index 00000000000..b0bbb265b96 Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_brightness_full_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_brightness_half_holo.png b/res/drawable-mdpi/ic_appwidget_settings_brightness_half_holo.png new file mode 100644 index 00000000000..fe043f50542 Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_brightness_half_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_brightness_off_holo.png b/res/drawable-mdpi/ic_appwidget_settings_brightness_off_holo.png new file mode 100644 index 00000000000..c073ebebabd Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_brightness_off_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_gps_off_holo.png b/res/drawable-mdpi/ic_appwidget_settings_gps_off_holo.png new file mode 100644 index 00000000000..64427202405 Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_gps_off_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_gps_on_holo.png b/res/drawable-mdpi/ic_appwidget_settings_gps_on_holo.png new file mode 100644 index 00000000000..9e98ad9eda9 Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_gps_on_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_sync_off_holo.png b/res/drawable-mdpi/ic_appwidget_settings_sync_off_holo.png new file mode 100644 index 00000000000..ddef24c4559 Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_sync_off_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_sync_on_holo.png b/res/drawable-mdpi/ic_appwidget_settings_sync_on_holo.png new file mode 100644 index 00000000000..f7ba24a4958 Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_sync_on_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_wifi_off_holo.png b/res/drawable-mdpi/ic_appwidget_settings_wifi_off_holo.png new file mode 100644 index 00000000000..6edec54ad1c Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_wifi_off_holo.png differ diff --git a/res/drawable-mdpi/ic_appwidget_settings_wifi_on_holo.png b/res/drawable-mdpi/ic_appwidget_settings_wifi_on_holo.png new file mode 100644 index 00000000000..1fa295b9daa Binary files /dev/null and b/res/drawable-mdpi/ic_appwidget_settings_wifi_on_holo.png differ diff --git a/res/drawable-mdpi/ic_bt_cellphone.png b/res/drawable-mdpi/ic_bt_cellphone.png new file mode 100644 index 00000000000..bd84c483205 Binary files /dev/null and b/res/drawable-mdpi/ic_bt_cellphone.png differ diff --git a/res/drawable-mdpi/ic_bt_config.png b/res/drawable-mdpi/ic_bt_config.png new file mode 100644 index 00000000000..792810427f9 Binary files /dev/null and b/res/drawable-mdpi/ic_bt_config.png differ diff --git a/res/drawable-mdpi/ic_bt_headphones_a2dp.png b/res/drawable-mdpi/ic_bt_headphones_a2dp.png new file mode 100644 index 00000000000..84ac3d61b2b Binary files /dev/null and b/res/drawable-mdpi/ic_bt_headphones_a2dp.png differ diff --git a/res/drawable-mdpi/ic_bt_headset_hfp.png b/res/drawable-mdpi/ic_bt_headset_hfp.png new file mode 100644 index 00000000000..9b53439806d Binary files /dev/null and b/res/drawable-mdpi/ic_bt_headset_hfp.png differ diff --git a/res/drawable-mdpi/ic_bt_imaging.png b/res/drawable-mdpi/ic_bt_imaging.png new file mode 100644 index 00000000000..09367d23a0e Binary files /dev/null and b/res/drawable-mdpi/ic_bt_imaging.png differ diff --git a/res/drawable-mdpi/ic_bt_keyboard_hid.png b/res/drawable-mdpi/ic_bt_keyboard_hid.png new file mode 100644 index 00000000000..1594b2c4b2f Binary files /dev/null and b/res/drawable-mdpi/ic_bt_keyboard_hid.png differ diff --git a/res/drawable-mdpi/ic_bt_laptop.png b/res/drawable-mdpi/ic_bt_laptop.png new file mode 100644 index 00000000000..4b9ad6b08e2 Binary files /dev/null and b/res/drawable-mdpi/ic_bt_laptop.png differ diff --git a/res/drawable-mdpi/ic_bt_misc_hid.png b/res/drawable-mdpi/ic_bt_misc_hid.png new file mode 100644 index 00000000000..99aaa591f52 Binary files /dev/null and b/res/drawable-mdpi/ic_bt_misc_hid.png differ diff --git a/res/drawable-mdpi/ic_bt_network_pan.png b/res/drawable-mdpi/ic_bt_network_pan.png new file mode 100644 index 00000000000..7d1929fbdef Binary files /dev/null and b/res/drawable-mdpi/ic_bt_network_pan.png differ diff --git a/res/drawable-mdpi/ic_bt_pointing_hid.png b/res/drawable-mdpi/ic_bt_pointing_hid.png new file mode 100644 index 00000000000..8145e139486 Binary files /dev/null and b/res/drawable-mdpi/ic_bt_pointing_hid.png differ diff --git a/res/drawable/ic_btn_next.png b/res/drawable-mdpi/ic_btn_next.png similarity index 100% rename from res/drawable/ic_btn_next.png rename to res/drawable-mdpi/ic_btn_next.png diff --git a/res/drawable/ic_bt_laptop.png b/res/drawable-mdpi/ic_cm_stats_notif.png old mode 100755 new mode 100644 similarity index 84% rename from res/drawable/ic_bt_laptop.png rename to res/drawable-mdpi/ic_cm_stats_notif.png index 49a71c9daf9..9113877a6e6 Binary files a/res/drawable/ic_bt_laptop.png and b/res/drawable-mdpi/ic_cm_stats_notif.png differ diff --git a/res/drawable-mdpi/ic_emergency.png b/res/drawable-mdpi/ic_emergency.png new file mode 100755 index 00000000000..c6faf1e9e43 Binary files /dev/null and b/res/drawable-mdpi/ic_emergency.png differ diff --git a/res/drawable-mdpi/ic_empty.png b/res/drawable-mdpi/ic_empty.png new file mode 100644 index 00000000000..ede2c834a14 Binary files /dev/null and b/res/drawable-mdpi/ic_empty.png differ diff --git a/res/drawable-mdpi/ic_item_delete.png b/res/drawable-mdpi/ic_item_delete.png new file mode 100644 index 00000000000..f074db32efc Binary files /dev/null and b/res/drawable-mdpi/ic_item_delete.png differ diff --git a/res/drawable-mdpi/ic_launcher_settings.png b/res/drawable-mdpi/ic_launcher_settings.png new file mode 100644 index 00000000000..05cdd9aa94e Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_settings.png differ diff --git a/res/drawable-mdpi/ic_lockscreen_ime.png b/res/drawable-mdpi/ic_lockscreen_ime.png new file mode 100644 index 00000000000..b27e059260c Binary files /dev/null and b/res/drawable-mdpi/ic_lockscreen_ime.png differ diff --git a/res/drawable-mdpi/ic_menu_3d_globe.png b/res/drawable-mdpi/ic_menu_3d_globe.png new file mode 100644 index 00000000000..6755d5e6f2d Binary files /dev/null and b/res/drawable-mdpi/ic_menu_3d_globe.png differ diff --git a/res/drawable-mdpi/ic_menu_add.png b/res/drawable-mdpi/ic_menu_add.png new file mode 100644 index 00000000000..254a5724918 Binary files /dev/null and b/res/drawable-mdpi/ic_menu_add.png differ diff --git a/res/drawable-mdpi/ic_menu_delete_holo_dark.png b/res/drawable-mdpi/ic_menu_delete_holo_dark.png new file mode 100644 index 00000000000..db5e86874ab Binary files /dev/null and b/res/drawable-mdpi/ic_menu_delete_holo_dark.png differ diff --git a/res/drawable-mdpi/ic_menu_refresh_holo_dark.png b/res/drawable-mdpi/ic_menu_refresh_holo_dark.png new file mode 100644 index 00000000000..f68aacf07ea Binary files /dev/null and b/res/drawable-mdpi/ic_menu_refresh_holo_dark.png differ diff --git a/res/drawable-mdpi/ic_menu_save.png b/res/drawable-mdpi/ic_menu_save.png new file mode 100644 index 00000000000..283be30acaf Binary files /dev/null and b/res/drawable-mdpi/ic_menu_save.png differ diff --git a/res/drawable-mdpi/ic_menu_scan_network.png b/res/drawable-mdpi/ic_menu_scan_network.png new file mode 100644 index 00000000000..fed235e010f Binary files /dev/null and b/res/drawable-mdpi/ic_menu_scan_network.png differ diff --git a/res/drawable-mdpi/ic_menu_trash_holo_dark.png b/res/drawable-mdpi/ic_menu_trash_holo_dark.png new file mode 100644 index 00000000000..b9575aacb67 Binary files /dev/null and b/res/drawable-mdpi/ic_menu_trash_holo_dark.png differ diff --git a/res/drawable-mdpi/ic_network_signal_0.png b/res/drawable-mdpi/ic_network_signal_0.png new file mode 100644 index 00000000000..a1b84314549 Binary files /dev/null and b/res/drawable-mdpi/ic_network_signal_0.png differ diff --git a/res/drawable-mdpi/ic_network_signal_1.png b/res/drawable-mdpi/ic_network_signal_1.png new file mode 100644 index 00000000000..cc6179d4009 Binary files /dev/null and b/res/drawable-mdpi/ic_network_signal_1.png differ diff --git a/res/drawable-mdpi/ic_network_signal_2.png b/res/drawable-mdpi/ic_network_signal_2.png new file mode 100644 index 00000000000..1373fb6a692 Binary files /dev/null and b/res/drawable-mdpi/ic_network_signal_2.png differ diff --git a/res/drawable-mdpi/ic_network_signal_3.png b/res/drawable-mdpi/ic_network_signal_3.png new file mode 100644 index 00000000000..14468eb1ba1 Binary files /dev/null and b/res/drawable-mdpi/ic_network_signal_3.png differ diff --git a/res/drawable-mdpi/ic_network_signal_4.png b/res/drawable-mdpi/ic_network_signal_4.png new file mode 100644 index 00000000000..a7d0d8b2ae4 Binary files /dev/null and b/res/drawable-mdpi/ic_network_signal_4.png differ diff --git a/res/drawable-mdpi/ic_power_system.png b/res/drawable-mdpi/ic_power_system.png new file mode 100755 index 00000000000..cce518787b5 Binary files /dev/null and b/res/drawable-mdpi/ic_power_system.png differ diff --git a/res/drawable-mdpi/ic_settings_about.png b/res/drawable-mdpi/ic_settings_about.png new file mode 100644 index 00000000000..b3b61fbc91a Binary files /dev/null and b/res/drawable-mdpi/ic_settings_about.png differ diff --git a/res/drawable-mdpi/ic_settings_accessibility.png b/res/drawable-mdpi/ic_settings_accessibility.png new file mode 100755 index 00000000000..ba86d3d4aec Binary files /dev/null and b/res/drawable-mdpi/ic_settings_accessibility.png differ diff --git a/res/drawable-mdpi/ic_settings_advanced.png b/res/drawable-mdpi/ic_settings_advanced.png new file mode 100644 index 00000000000..0c039342085 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_advanced.png differ diff --git a/res/drawable-mdpi/ic_settings_applications.png b/res/drawable-mdpi/ic_settings_applications.png new file mode 100644 index 00000000000..33e23b357d6 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_applications.png differ diff --git a/res/drawable-mdpi/ic_settings_backup.png b/res/drawable-mdpi/ic_settings_backup.png new file mode 100644 index 00000000000..b012d977221 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_backup.png differ diff --git a/res/drawable-mdpi/ic_settings_battery.png b/res/drawable-mdpi/ic_settings_battery.png new file mode 100644 index 00000000000..6c71cc4bf26 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_battery.png differ diff --git a/res/drawable-mdpi/ic_settings_bluetooth.png b/res/drawable-mdpi/ic_settings_bluetooth.png new file mode 100644 index 00000000000..8cf80c0420d Binary files /dev/null and b/res/drawable-mdpi/ic_settings_bluetooth.png differ diff --git a/res/drawable-mdpi/ic_settings_bluetooth2.png b/res/drawable-mdpi/ic_settings_bluetooth2.png new file mode 100644 index 00000000000..b05656f282a Binary files /dev/null and b/res/drawable-mdpi/ic_settings_bluetooth2.png differ diff --git a/res/drawable-mdpi/ic_settings_cell_standby.png b/res/drawable-mdpi/ic_settings_cell_standby.png new file mode 100644 index 00000000000..0ac7b5d1741 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_cell_standby.png differ diff --git a/res/drawable-mdpi/ic_settings_cmlauncher.png b/res/drawable-mdpi/ic_settings_cmlauncher.png new file mode 100644 index 00000000000..189f4edd62e Binary files /dev/null and b/res/drawable-mdpi/ic_settings_cmlauncher.png differ diff --git a/res/drawable-mdpi/ic_settings_cmsettings.png b/res/drawable-mdpi/ic_settings_cmsettings.png new file mode 100644 index 00000000000..446ef9c57b4 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_cmsettings.png differ diff --git a/res/drawable-mdpi/ic_settings_data_usage.png b/res/drawable-mdpi/ic_settings_data_usage.png new file mode 100644 index 00000000000..8064773265e Binary files /dev/null and b/res/drawable-mdpi/ic_settings_data_usage.png differ diff --git a/res/drawable-mdpi/ic_settings_date_time.png b/res/drawable-mdpi/ic_settings_date_time.png new file mode 100644 index 00000000000..f4fc73cdb0c Binary files /dev/null and b/res/drawable-mdpi/ic_settings_date_time.png differ diff --git a/res/drawable-mdpi/ic_settings_development.png b/res/drawable-mdpi/ic_settings_development.png new file mode 100644 index 00000000000..647ceb9abcf Binary files /dev/null and b/res/drawable-mdpi/ic_settings_development.png differ diff --git a/res/drawable-mdpi/ic_settings_display.png b/res/drawable-mdpi/ic_settings_display.png new file mode 100644 index 00000000000..93662989ae3 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_display.png differ diff --git a/res/drawable-mdpi/ic_settings_dock.png b/res/drawable-mdpi/ic_settings_dock.png new file mode 100644 index 00000000000..01ebe918fb2 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_dock.png differ diff --git a/res/drawable-mdpi/ic_settings_language.png b/res/drawable-mdpi/ic_settings_language.png new file mode 100644 index 00000000000..f8aca679ba0 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_language.png differ diff --git a/res/drawable-mdpi/ic_settings_location.png b/res/drawable-mdpi/ic_settings_location.png new file mode 100644 index 00000000000..07b9f27a99a Binary files /dev/null and b/res/drawable-mdpi/ic_settings_location.png differ diff --git a/res/drawable-mdpi/ic_settings_lockscreen.png b/res/drawable-mdpi/ic_settings_lockscreen.png new file mode 100644 index 00000000000..ac18347a0bf Binary files /dev/null and b/res/drawable-mdpi/ic_settings_lockscreen.png differ diff --git a/res/drawable-mdpi/ic_settings_performance.png b/res/drawable-mdpi/ic_settings_performance.png new file mode 100644 index 00000000000..a97d54e982a Binary files /dev/null and b/res/drawable-mdpi/ic_settings_performance.png differ diff --git a/res/drawable-mdpi/ic_settings_phone_idle.png b/res/drawable-mdpi/ic_settings_phone_idle.png new file mode 100644 index 00000000000..7734b09d9db Binary files /dev/null and b/res/drawable-mdpi/ic_settings_phone_idle.png differ diff --git a/res/drawable-mdpi/ic_settings_placeholder.png b/res/drawable-mdpi/ic_settings_placeholder.png new file mode 100644 index 00000000000..a99f5a1d9d1 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_placeholder.png differ diff --git a/res/drawable-mdpi/ic_settings_profiles.png b/res/drawable-mdpi/ic_settings_profiles.png new file mode 100644 index 00000000000..cc740bd1dc4 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_profiles.png differ diff --git a/res/drawable-mdpi/ic_settings_security.png b/res/drawable-mdpi/ic_settings_security.png new file mode 100644 index 00000000000..3eb4421f1c5 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_security.png differ diff --git a/res/drawable-mdpi/ic_settings_sound.png b/res/drawable-mdpi/ic_settings_sound.png new file mode 100644 index 00000000000..f647fea5bdf Binary files /dev/null and b/res/drawable-mdpi/ic_settings_sound.png differ diff --git a/res/drawable-mdpi/ic_settings_storage.png b/res/drawable-mdpi/ic_settings_storage.png new file mode 100644 index 00000000000..d44f91a1e01 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_storage.png differ diff --git a/res/drawable-mdpi/ic_settings_sync.png b/res/drawable-mdpi/ic_settings_sync.png new file mode 100644 index 00000000000..4130f3172ef Binary files /dev/null and b/res/drawable-mdpi/ic_settings_sync.png differ diff --git a/res/drawable-mdpi/ic_settings_system.png b/res/drawable-mdpi/ic_settings_system.png new file mode 100644 index 00000000000..f738fd9f177 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_system.png differ diff --git a/res/drawable-mdpi/ic_settings_themes.png b/res/drawable-mdpi/ic_settings_themes.png new file mode 100644 index 00000000000..7dd65fcc5d5 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_themes.png differ diff --git a/res/drawable-mdpi/ic_settings_voice_calls.png b/res/drawable-mdpi/ic_settings_voice_calls.png new file mode 100644 index 00000000000..89d04d742b5 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_voice_calls.png differ diff --git a/res/drawable-mdpi/ic_settings_wifi.png b/res/drawable-mdpi/ic_settings_wifi.png new file mode 100644 index 00000000000..e8f31299eb7 Binary files /dev/null and b/res/drawable-mdpi/ic_settings_wifi.png differ diff --git a/res/drawable-mdpi/ic_settings_wireless.png b/res/drawable-mdpi/ic_settings_wireless.png new file mode 100644 index 00000000000..37d84b8196e Binary files /dev/null and b/res/drawable-mdpi/ic_settings_wireless.png differ diff --git a/res/drawable-mdpi/ic_sync_anim_holo.png b/res/drawable-mdpi/ic_sync_anim_holo.png new file mode 100644 index 00000000000..66db0626afc Binary files /dev/null and b/res/drawable-mdpi/ic_sync_anim_holo.png differ diff --git a/res/drawable-mdpi/ic_sync_error.png b/res/drawable-mdpi/ic_sync_error.png new file mode 100644 index 00000000000..2b98bca1a97 Binary files /dev/null and b/res/drawable-mdpi/ic_sync_error.png differ diff --git a/res/drawable-mdpi/ic_sync_error_holo.png b/res/drawable-mdpi/ic_sync_error_holo.png new file mode 100644 index 00000000000..dd3958ec60f Binary files /dev/null and b/res/drawable-mdpi/ic_sync_error_holo.png differ diff --git a/res/drawable-mdpi/ic_sync_green.png b/res/drawable-mdpi/ic_sync_green.png new file mode 100644 index 00000000000..177a024a3f3 Binary files /dev/null and b/res/drawable-mdpi/ic_sync_green.png differ diff --git a/res/drawable-mdpi/ic_sync_green_holo.png b/res/drawable-mdpi/ic_sync_green_holo.png new file mode 100644 index 00000000000..1c981b66dfd Binary files /dev/null and b/res/drawable-mdpi/ic_sync_green_holo.png differ diff --git a/res/drawable-mdpi/ic_sync_grey.png b/res/drawable-mdpi/ic_sync_grey.png new file mode 100644 index 00000000000..8f168d477ef Binary files /dev/null and b/res/drawable-mdpi/ic_sync_grey.png differ diff --git a/res/drawable-mdpi/ic_sync_grey_holo.png b/res/drawable-mdpi/ic_sync_grey_holo.png new file mode 100644 index 00000000000..bb4267f0bfe Binary files /dev/null and b/res/drawable-mdpi/ic_sync_grey_holo.png differ diff --git a/res/drawable-mdpi/ic_sync_red.png b/res/drawable-mdpi/ic_sync_red.png new file mode 100644 index 00000000000..5e381368142 Binary files /dev/null and b/res/drawable-mdpi/ic_sync_red.png differ diff --git a/res/drawable-mdpi/ic_sync_red_holo.png b/res/drawable-mdpi/ic_sync_red_holo.png new file mode 100644 index 00000000000..36fe6b8e456 Binary files /dev/null and b/res/drawable-mdpi/ic_sync_red_holo.png differ diff --git a/res/drawable-mdpi/ic_sysbar_quicksettings.png b/res/drawable-mdpi/ic_sysbar_quicksettings.png new file mode 100644 index 00000000000..792810427f9 Binary files /dev/null and b/res/drawable-mdpi/ic_sysbar_quicksettings.png differ diff --git a/res/drawable-mdpi/ic_tab_selected_all.png b/res/drawable-mdpi/ic_tab_selected_all.png new file mode 100644 index 00000000000..3cc0dde6559 Binary files /dev/null and b/res/drawable-mdpi/ic_tab_selected_all.png differ diff --git a/res/drawable-mdpi/ic_tab_selected_download.png b/res/drawable-mdpi/ic_tab_selected_download.png new file mode 100644 index 00000000000..6d9faf16559 Binary files /dev/null and b/res/drawable-mdpi/ic_tab_selected_download.png differ diff --git a/res/drawable-mdpi/ic_tab_selected_running.png b/res/drawable-mdpi/ic_tab_selected_running.png new file mode 100644 index 00000000000..b76a1d3d13c Binary files /dev/null and b/res/drawable-mdpi/ic_tab_selected_running.png differ diff --git a/res/drawable-mdpi/ic_tab_selected_sdcard.png b/res/drawable-mdpi/ic_tab_selected_sdcard.png new file mode 100644 index 00000000000..731aad5388b Binary files /dev/null and b/res/drawable-mdpi/ic_tab_selected_sdcard.png differ diff --git a/res/drawable-mdpi/ic_tab_unselected_all.png b/res/drawable-mdpi/ic_tab_unselected_all.png new file mode 100644 index 00000000000..3cc0dde6559 Binary files /dev/null and b/res/drawable-mdpi/ic_tab_unselected_all.png differ diff --git a/res/drawable-mdpi/ic_tab_unselected_download.png b/res/drawable-mdpi/ic_tab_unselected_download.png new file mode 100644 index 00000000000..6d9faf16559 Binary files /dev/null and b/res/drawable-mdpi/ic_tab_unselected_download.png differ diff --git a/res/drawable-mdpi/ic_tab_unselected_running.png b/res/drawable-mdpi/ic_tab_unselected_running.png new file mode 100644 index 00000000000..b76a1d3d13c Binary files /dev/null and b/res/drawable-mdpi/ic_tab_unselected_running.png differ diff --git a/res/drawable-mdpi/ic_tab_unselected_sdcard.png b/res/drawable-mdpi/ic_tab_unselected_sdcard.png new file mode 100644 index 00000000000..731aad5388b Binary files /dev/null and b/res/drawable-mdpi/ic_tab_unselected_sdcard.png differ diff --git a/res/drawable-mdpi/ic_wifi_lock_signal_1.png b/res/drawable-mdpi/ic_wifi_lock_signal_1.png new file mode 100644 index 00000000000..e8ac823bfa6 Binary files /dev/null and b/res/drawable-mdpi/ic_wifi_lock_signal_1.png differ diff --git a/res/drawable-mdpi/ic_wifi_lock_signal_2.png b/res/drawable-mdpi/ic_wifi_lock_signal_2.png new file mode 100644 index 00000000000..6034a89b6fc Binary files /dev/null and b/res/drawable-mdpi/ic_wifi_lock_signal_2.png differ diff --git a/res/drawable-mdpi/ic_wifi_lock_signal_3.png b/res/drawable-mdpi/ic_wifi_lock_signal_3.png new file mode 100644 index 00000000000..0089a55d0c3 Binary files /dev/null and b/res/drawable-mdpi/ic_wifi_lock_signal_3.png differ diff --git a/res/drawable-mdpi/ic_wifi_lock_signal_4.png b/res/drawable-mdpi/ic_wifi_lock_signal_4.png new file mode 100644 index 00000000000..ae02f2428a8 Binary files /dev/null and b/res/drawable-mdpi/ic_wifi_lock_signal_4.png differ diff --git a/res/drawable-mdpi/ic_wifi_signal_1.png b/res/drawable-mdpi/ic_wifi_signal_1.png new file mode 100644 index 00000000000..e99a47d250e Binary files /dev/null and b/res/drawable-mdpi/ic_wifi_signal_1.png differ diff --git a/res/drawable-mdpi/ic_wifi_signal_2.png b/res/drawable-mdpi/ic_wifi_signal_2.png new file mode 100644 index 00000000000..79516ea196f Binary files /dev/null and b/res/drawable-mdpi/ic_wifi_signal_2.png differ diff --git a/res/drawable-mdpi/ic_wifi_signal_3.png b/res/drawable-mdpi/ic_wifi_signal_3.png new file mode 100644 index 00000000000..f2af11d382e Binary files /dev/null and b/res/drawable-mdpi/ic_wifi_signal_3.png differ diff --git a/res/drawable-mdpi/ic_wifi_signal_4.png b/res/drawable-mdpi/ic_wifi_signal_4.png new file mode 100644 index 00000000000..3d4288ea2c8 Binary files /dev/null and b/res/drawable-mdpi/ic_wifi_signal_4.png differ diff --git a/res/drawable/lock_anim_00.png b/res/drawable-mdpi/lock_anim_0.png similarity index 100% rename from res/drawable/lock_anim_00.png rename to res/drawable-mdpi/lock_anim_0.png diff --git a/res/drawable-mdpi/lock_anim_1.png b/res/drawable-mdpi/lock_anim_1.png new file mode 100644 index 00000000000..6cae8e5ef54 Binary files /dev/null and b/res/drawable-mdpi/lock_anim_1.png differ diff --git a/res/drawable/lock_anim_10.png b/res/drawable-mdpi/lock_anim_10.png similarity index 100% rename from res/drawable/lock_anim_10.png rename to res/drawable-mdpi/lock_anim_10.png diff --git a/res/drawable-mdpi/lock_anim_11.png b/res/drawable-mdpi/lock_anim_11.png new file mode 100644 index 00000000000..35db81544e2 Binary files /dev/null and b/res/drawable-mdpi/lock_anim_11.png differ diff --git a/res/drawable/lock_anim_12.png b/res/drawable-mdpi/lock_anim_12.png similarity index 100% rename from res/drawable/lock_anim_12.png rename to res/drawable-mdpi/lock_anim_12.png diff --git a/res/drawable-mdpi/lock_anim_13.png b/res/drawable-mdpi/lock_anim_13.png new file mode 100644 index 00000000000..d0b8cf0a6dc Binary files /dev/null and b/res/drawable-mdpi/lock_anim_13.png differ diff --git a/res/drawable/lock_anim_14.png b/res/drawable-mdpi/lock_anim_14.png similarity index 100% rename from res/drawable/lock_anim_14.png rename to res/drawable-mdpi/lock_anim_14.png diff --git a/res/drawable/lock_anim_02.png b/res/drawable-mdpi/lock_anim_2.png similarity index 100% rename from res/drawable/lock_anim_02.png rename to res/drawable-mdpi/lock_anim_2.png diff --git a/res/drawable-mdpi/lock_anim_3.png b/res/drawable-mdpi/lock_anim_3.png new file mode 100644 index 00000000000..7e2ba9a02c0 Binary files /dev/null and b/res/drawable-mdpi/lock_anim_3.png differ diff --git a/res/drawable/lock_anim_04.png b/res/drawable-mdpi/lock_anim_4.png similarity index 100% rename from res/drawable/lock_anim_04.png rename to res/drawable-mdpi/lock_anim_4.png diff --git a/res/drawable-mdpi/lock_anim_5.png b/res/drawable-mdpi/lock_anim_5.png new file mode 100644 index 00000000000..17e38396c9f Binary files /dev/null and b/res/drawable-mdpi/lock_anim_5.png differ diff --git a/res/drawable/lock_anim_06.png b/res/drawable-mdpi/lock_anim_6.png similarity index 100% rename from res/drawable/lock_anim_06.png rename to res/drawable-mdpi/lock_anim_6.png diff --git a/res/drawable-mdpi/lock_anim_7.png b/res/drawable-mdpi/lock_anim_7.png new file mode 100644 index 00000000000..1d94a471439 Binary files /dev/null and b/res/drawable-mdpi/lock_anim_7.png differ diff --git a/res/drawable/lock_anim_08.png b/res/drawable-mdpi/lock_anim_8.png similarity index 100% rename from res/drawable/lock_anim_08.png rename to res/drawable-mdpi/lock_anim_8.png diff --git a/res/drawable-mdpi/lock_anim_9.png b/res/drawable-mdpi/lock_anim_9.png new file mode 100644 index 00000000000..d401624d68b Binary files /dev/null and b/res/drawable-mdpi/lock_anim_9.png differ diff --git a/res/drawable-mdpi/nav_divider.png b/res/drawable-mdpi/nav_divider.png new file mode 100644 index 00000000000..f7ed6dff8ec Binary files /dev/null and b/res/drawable-mdpi/nav_divider.png differ diff --git a/res/drawable-mdpi/password_field_default.9.png b/res/drawable-mdpi/password_field_default.9.png new file mode 100644 index 00000000000..3193275cda6 Binary files /dev/null and b/res/drawable-mdpi/password_field_default.9.png differ diff --git a/res/drawable-mdpi/stat_navbar_edit_off.png b/res/drawable-mdpi/stat_navbar_edit_off.png new file mode 100644 index 00000000000..05207685578 Binary files /dev/null and b/res/drawable-mdpi/stat_navbar_edit_off.png differ diff --git a/res/drawable-mdpi/stat_navbar_edit_on.png b/res/drawable-mdpi/stat_navbar_edit_on.png new file mode 100644 index 00000000000..8c93091f0d3 Binary files /dev/null and b/res/drawable-mdpi/stat_navbar_edit_on.png differ diff --git a/res/drawable-mdpi/stat_sys_phone_call.png b/res/drawable-mdpi/stat_sys_phone_call.png new file mode 100644 index 00000000000..c44d0620f7f Binary files /dev/null and b/res/drawable-mdpi/stat_sys_phone_call.png differ diff --git a/res/drawable-nodpi/preview.png b/res/drawable-nodpi/preview.png new file mode 100644 index 00000000000..10a7c9023cc Binary files /dev/null and b/res/drawable-nodpi/preview.png differ diff --git a/res/drawable-xhdpi/app_gauge.9.png b/res/drawable-xhdpi/app_gauge.9.png new file mode 100644 index 00000000000..ceb798c4a5f Binary files /dev/null and b/res/drawable-xhdpi/app_gauge.9.png differ diff --git a/res/drawable-xhdpi/appwidget_bg_holo.9.png b/res/drawable-xhdpi/appwidget_bg_holo.9.png new file mode 100644 index 00000000000..7ccb762be03 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_bg_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_inner_focused_c_holo.9.png b/res/drawable-xhdpi/appwidget_inner_focused_c_holo.9.png new file mode 100644 index 00000000000..0de253ca006 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_inner_focused_c_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_inner_focused_l_holo.9.png b/res/drawable-xhdpi/appwidget_inner_focused_l_holo.9.png new file mode 100644 index 00000000000..ce9decd19c7 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_inner_focused_l_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_inner_focused_r_holo.9.png b/res/drawable-xhdpi/appwidget_inner_focused_r_holo.9.png new file mode 100644 index 00000000000..448cd837301 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_inner_focused_r_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_inner_pressed_c_holo.9.png b/res/drawable-xhdpi/appwidget_inner_pressed_c_holo.9.png new file mode 100644 index 00000000000..defdbb9c00b Binary files /dev/null and b/res/drawable-xhdpi/appwidget_inner_pressed_c_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_inner_pressed_l_holo.9.png b/res/drawable-xhdpi/appwidget_inner_pressed_l_holo.9.png new file mode 100644 index 00000000000..582d0e19738 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_inner_pressed_l_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_inner_pressed_r_holo.9.png b/res/drawable-xhdpi/appwidget_inner_pressed_r_holo.9.png new file mode 100644 index 00000000000..9732dd7c556 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_inner_pressed_r_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_divider_holo.9.png b/res/drawable-xhdpi/appwidget_settings_divider_holo.9.png new file mode 100644 index 00000000000..f7ad9103216 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_divider_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_ind_mid_c_holo.9.png b/res/drawable-xhdpi/appwidget_settings_ind_mid_c_holo.9.png new file mode 100644 index 00000000000..b117df69ee8 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_ind_mid_c_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_ind_mid_l_holo.9.png b/res/drawable-xhdpi/appwidget_settings_ind_mid_l_holo.9.png new file mode 100644 index 00000000000..421c4e2bb4c Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_ind_mid_l_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_ind_mid_r_holo.9.png b/res/drawable-xhdpi/appwidget_settings_ind_mid_r_holo.9.png new file mode 100644 index 00000000000..220ac66e829 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_ind_mid_r_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_ind_off_c_holo.9.png b/res/drawable-xhdpi/appwidget_settings_ind_off_c_holo.9.png new file mode 100644 index 00000000000..b7e613d5926 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_ind_off_c_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_ind_off_l_holo.9.png b/res/drawable-xhdpi/appwidget_settings_ind_off_l_holo.9.png new file mode 100644 index 00000000000..ba98e582edf Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_ind_off_l_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_ind_off_r_holo.9.png b/res/drawable-xhdpi/appwidget_settings_ind_off_r_holo.9.png new file mode 100644 index 00000000000..b57478c1ea6 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_ind_off_r_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_ind_on_c_holo.9.png b/res/drawable-xhdpi/appwidget_settings_ind_on_c_holo.9.png new file mode 100644 index 00000000000..8a62b72b99b Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_ind_on_c_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_ind_on_l_holo.9.png b/res/drawable-xhdpi/appwidget_settings_ind_on_l_holo.9.png new file mode 100644 index 00000000000..713d76db460 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_ind_on_l_holo.9.png differ diff --git a/res/drawable-xhdpi/appwidget_settings_ind_on_r_holo.9.png b/res/drawable-xhdpi/appwidget_settings_ind_on_r_holo.9.png new file mode 100644 index 00000000000..ae0eda2b3a4 Binary files /dev/null and b/res/drawable-xhdpi/appwidget_settings_ind_on_r_holo.9.png differ diff --git a/res/drawable-xhdpi/data_grid_border.9.png b/res/drawable-xhdpi/data_grid_border.9.png new file mode 100644 index 00000000000..7557115beac Binary files /dev/null and b/res/drawable-xhdpi/data_grid_border.9.png differ diff --git a/res/drawable-xhdpi/data_grid_primary.9.png b/res/drawable-xhdpi/data_grid_primary.9.png new file mode 100644 index 00000000000..ff69fd814da Binary files /dev/null and b/res/drawable-xhdpi/data_grid_primary.9.png differ diff --git a/res/drawable-xhdpi/data_grid_secondary.9.png b/res/drawable-xhdpi/data_grid_secondary.9.png new file mode 100644 index 00000000000..09065bf954e Binary files /dev/null and b/res/drawable-xhdpi/data_grid_secondary.9.png differ diff --git a/res/drawable-xhdpi/data_sweep_left_activated.9.png b/res/drawable-xhdpi/data_sweep_left_activated.9.png new file mode 100644 index 00000000000..bcd91f8a8fa Binary files /dev/null and b/res/drawable-xhdpi/data_sweep_left_activated.9.png differ diff --git a/res/drawable-xhdpi/data_sweep_left_default.9.png b/res/drawable-xhdpi/data_sweep_left_default.9.png new file mode 100644 index 00000000000..4abe6cddf9b Binary files /dev/null and b/res/drawable-xhdpi/data_sweep_left_default.9.png differ diff --git a/res/drawable-xhdpi/data_sweep_limit_activated.9.png b/res/drawable-xhdpi/data_sweep_limit_activated.9.png new file mode 100644 index 00000000000..24ac5712c54 Binary files /dev/null and b/res/drawable-xhdpi/data_sweep_limit_activated.9.png differ diff --git a/res/drawable-xhdpi/data_sweep_limit_default.9.png b/res/drawable-xhdpi/data_sweep_limit_default.9.png new file mode 100644 index 00000000000..9ce466a2ff8 Binary files /dev/null and b/res/drawable-xhdpi/data_sweep_limit_default.9.png differ diff --git a/res/drawable-xhdpi/data_sweep_right_activated.9.png b/res/drawable-xhdpi/data_sweep_right_activated.9.png new file mode 100644 index 00000000000..0a3f2dbb94b Binary files /dev/null and b/res/drawable-xhdpi/data_sweep_right_activated.9.png differ diff --git a/res/drawable-xhdpi/data_sweep_right_default.9.png b/res/drawable-xhdpi/data_sweep_right_default.9.png new file mode 100644 index 00000000000..1f2977827fe Binary files /dev/null and b/res/drawable-xhdpi/data_sweep_right_default.9.png differ diff --git a/res/drawable-xhdpi/data_sweep_warning_activated.9.png b/res/drawable-xhdpi/data_sweep_warning_activated.9.png new file mode 100644 index 00000000000..b6242281025 Binary files /dev/null and b/res/drawable-xhdpi/data_sweep_warning_activated.9.png differ diff --git a/res/drawable-xhdpi/data_sweep_warning_default.9.png b/res/drawable-xhdpi/data_sweep_warning_default.9.png new file mode 100644 index 00000000000..b79e811cdb1 Binary files /dev/null and b/res/drawable-xhdpi/data_sweep_warning_default.9.png differ diff --git a/res/drawable-xhdpi/dotted_line_480px.png b/res/drawable-xhdpi/dotted_line_480px.png new file mode 100644 index 00000000000..7a9d0241d1d Binary files /dev/null and b/res/drawable-xhdpi/dotted_line_480px.png differ diff --git a/res/drawable-xhdpi/encroid_progress.png b/res/drawable-xhdpi/encroid_progress.png new file mode 100644 index 00000000000..ed9d10f9c4a Binary files /dev/null and b/res/drawable-xhdpi/encroid_progress.png differ diff --git a/res/drawable-xhdpi/encroid_resignin.png b/res/drawable-xhdpi/encroid_resignin.png new file mode 100644 index 00000000000..1c593da0d6d Binary files /dev/null and b/res/drawable-xhdpi/encroid_resignin.png differ diff --git a/res/drawable-xhdpi/encroid_waiting.png b/res/drawable-xhdpi/encroid_waiting.png new file mode 100644 index 00000000000..aea5d57f99b Binary files /dev/null and b/res/drawable-xhdpi/encroid_waiting.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_bluetooth_off_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_bluetooth_off_holo.png new file mode 100644 index 00000000000..bea478ec7e1 Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_bluetooth_off_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_bluetooth_on_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_bluetooth_on_holo.png new file mode 100644 index 00000000000..70aca2d34b6 Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_bluetooth_on_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_brightness_auto_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_brightness_auto_holo.png new file mode 100644 index 00000000000..709c25a9989 Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_brightness_auto_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_brightness_full_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_brightness_full_holo.png new file mode 100644 index 00000000000..dd13c091807 Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_brightness_full_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_brightness_half_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_brightness_half_holo.png new file mode 100644 index 00000000000..b6d238b348b Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_brightness_half_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_brightness_off_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_brightness_off_holo.png new file mode 100644 index 00000000000..54d40d69d0f Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_brightness_off_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_gps_off_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_gps_off_holo.png new file mode 100644 index 00000000000..0548274008f Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_gps_off_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_gps_on_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_gps_on_holo.png new file mode 100644 index 00000000000..d1d97685d63 Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_gps_on_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_sync_off_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_sync_off_holo.png new file mode 100644 index 00000000000..11925bd7854 Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_sync_off_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_sync_on_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_sync_on_holo.png new file mode 100644 index 00000000000..17b594659e0 Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_sync_on_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_wifi_off_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_wifi_off_holo.png new file mode 100644 index 00000000000..53b4566b464 Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_wifi_off_holo.png differ diff --git a/res/drawable-xhdpi/ic_appwidget_settings_wifi_on_holo.png b/res/drawable-xhdpi/ic_appwidget_settings_wifi_on_holo.png new file mode 100644 index 00000000000..bdf9918c48a Binary files /dev/null and b/res/drawable-xhdpi/ic_appwidget_settings_wifi_on_holo.png differ diff --git a/res/drawable-xhdpi/ic_bt_cellphone.png b/res/drawable-xhdpi/ic_bt_cellphone.png new file mode 100644 index 00000000000..57bad3f9e42 Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_cellphone.png differ diff --git a/res/drawable-xhdpi/ic_bt_config.png b/res/drawable-xhdpi/ic_bt_config.png new file mode 100644 index 00000000000..67544690f6d Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_config.png differ diff --git a/res/drawable-xhdpi/ic_bt_headphones_a2dp.png b/res/drawable-xhdpi/ic_bt_headphones_a2dp.png new file mode 100644 index 00000000000..125c0131a68 Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_headphones_a2dp.png differ diff --git a/res/drawable-xhdpi/ic_bt_headset_hfp.png b/res/drawable-xhdpi/ic_bt_headset_hfp.png new file mode 100644 index 00000000000..b7f8108a627 Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_headset_hfp.png differ diff --git a/res/drawable-xhdpi/ic_bt_imaging.png b/res/drawable-xhdpi/ic_bt_imaging.png new file mode 100644 index 00000000000..724a134902e Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_imaging.png differ diff --git a/res/drawable-xhdpi/ic_bt_keyboard_hid.png b/res/drawable-xhdpi/ic_bt_keyboard_hid.png new file mode 100644 index 00000000000..a4c310c808d Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_keyboard_hid.png differ diff --git a/res/drawable-xhdpi/ic_bt_laptop.png b/res/drawable-xhdpi/ic_bt_laptop.png new file mode 100644 index 00000000000..ead98e34988 Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_laptop.png differ diff --git a/res/drawable-xhdpi/ic_bt_misc_hid.png b/res/drawable-xhdpi/ic_bt_misc_hid.png new file mode 100644 index 00000000000..231c6efb72b Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_misc_hid.png differ diff --git a/res/drawable-xhdpi/ic_bt_network_pan.png b/res/drawable-xhdpi/ic_bt_network_pan.png new file mode 100644 index 00000000000..2b425c46293 Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_network_pan.png differ diff --git a/res/drawable-xhdpi/ic_bt_pointing_hid.png b/res/drawable-xhdpi/ic_bt_pointing_hid.png new file mode 100644 index 00000000000..bb01e17d53b Binary files /dev/null and b/res/drawable-xhdpi/ic_bt_pointing_hid.png differ diff --git a/res/drawable-xhdpi/ic_btn_next.png b/res/drawable-xhdpi/ic_btn_next.png new file mode 100644 index 00000000000..feae23ce069 Binary files /dev/null and b/res/drawable-xhdpi/ic_btn_next.png differ diff --git a/res/drawable-xhdpi/ic_cm_stats_notif.png b/res/drawable-xhdpi/ic_cm_stats_notif.png new file mode 100644 index 00000000000..715eb9a1b39 Binary files /dev/null and b/res/drawable-xhdpi/ic_cm_stats_notif.png differ diff --git a/res/drawable-xhdpi/ic_emergency.png b/res/drawable-xhdpi/ic_emergency.png new file mode 100644 index 00000000000..3d4a2336a24 Binary files /dev/null and b/res/drawable-xhdpi/ic_emergency.png differ diff --git a/res/drawable-xhdpi/ic_empty.png b/res/drawable-xhdpi/ic_empty.png new file mode 100644 index 00000000000..5742d139166 Binary files /dev/null and b/res/drawable-xhdpi/ic_empty.png differ diff --git a/res/drawable-xhdpi/ic_item_delete.png b/res/drawable-xhdpi/ic_item_delete.png new file mode 100644 index 00000000000..2dcd2996c4d Binary files /dev/null and b/res/drawable-xhdpi/ic_item_delete.png differ diff --git a/res/drawable-xhdpi/ic_launcher_settings.png b/res/drawable-xhdpi/ic_launcher_settings.png new file mode 100644 index 00000000000..2b2907b6084 Binary files /dev/null and b/res/drawable-xhdpi/ic_launcher_settings.png differ diff --git a/res/drawable-xhdpi/ic_lockscreen_ime.png b/res/drawable-xhdpi/ic_lockscreen_ime.png new file mode 100644 index 00000000000..a40ddebf87c Binary files /dev/null and b/res/drawable-xhdpi/ic_lockscreen_ime.png differ diff --git a/res/drawable-xhdpi/ic_menu_3d_globe.png b/res/drawable-xhdpi/ic_menu_3d_globe.png new file mode 100644 index 00000000000..1fda0a26bf0 Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_3d_globe.png differ diff --git a/res/drawable-xhdpi/ic_menu_add.png b/res/drawable-xhdpi/ic_menu_add.png new file mode 100644 index 00000000000..6b1df2ffba6 Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_add.png differ diff --git a/res/drawable-xhdpi/ic_menu_delete_holo_dark.png b/res/drawable-xhdpi/ic_menu_delete_holo_dark.png new file mode 100644 index 00000000000..9c31231f3fa Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_delete_holo_dark.png differ diff --git a/res/drawable-xhdpi/ic_menu_nfc_writer_dark.png b/res/drawable-xhdpi/ic_menu_nfc_writer_dark.png new file mode 100644 index 00000000000..417ec981daa Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_nfc_writer_dark.png differ diff --git a/res/drawable-xhdpi/ic_menu_refresh_holo_dark.png b/res/drawable-xhdpi/ic_menu_refresh_holo_dark.png new file mode 100644 index 00000000000..3db90ee847a Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_refresh_holo_dark.png differ diff --git a/res/drawable-xhdpi/ic_menu_save.png b/res/drawable-xhdpi/ic_menu_save.png new file mode 100644 index 00000000000..c403206a1fd Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_save.png differ diff --git a/res/drawable-xhdpi/ic_menu_scan_network.png b/res/drawable-xhdpi/ic_menu_scan_network.png new file mode 100644 index 00000000000..3f74ca74d3b Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_scan_network.png differ diff --git a/res/drawable-xhdpi/ic_menu_trash_holo_dark.png b/res/drawable-xhdpi/ic_menu_trash_holo_dark.png new file mode 100644 index 00000000000..33add130f90 Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_trash_holo_dark.png differ diff --git a/res/drawable-xhdpi/ic_network_signal_0.png b/res/drawable-xhdpi/ic_network_signal_0.png new file mode 100644 index 00000000000..b609ecf3d1f Binary files /dev/null and b/res/drawable-xhdpi/ic_network_signal_0.png differ diff --git a/res/drawable-xhdpi/ic_network_signal_1.png b/res/drawable-xhdpi/ic_network_signal_1.png new file mode 100644 index 00000000000..854921f1e22 Binary files /dev/null and b/res/drawable-xhdpi/ic_network_signal_1.png differ diff --git a/res/drawable-xhdpi/ic_network_signal_2.png b/res/drawable-xhdpi/ic_network_signal_2.png new file mode 100644 index 00000000000..3db4ce6dc59 Binary files /dev/null and b/res/drawable-xhdpi/ic_network_signal_2.png differ diff --git a/res/drawable-xhdpi/ic_network_signal_3.png b/res/drawable-xhdpi/ic_network_signal_3.png new file mode 100644 index 00000000000..18003e520f0 Binary files /dev/null and b/res/drawable-xhdpi/ic_network_signal_3.png differ diff --git a/res/drawable-xhdpi/ic_network_signal_4.png b/res/drawable-xhdpi/ic_network_signal_4.png new file mode 100644 index 00000000000..5e2b009d359 Binary files /dev/null and b/res/drawable-xhdpi/ic_network_signal_4.png differ diff --git a/res/drawable-xhdpi/ic_power_system.png b/res/drawable-xhdpi/ic_power_system.png new file mode 100644 index 00000000000..9a360f7fc91 Binary files /dev/null and b/res/drawable-xhdpi/ic_power_system.png differ diff --git a/res/drawable-xhdpi/ic_settings_about.png b/res/drawable-xhdpi/ic_settings_about.png new file mode 100644 index 00000000000..84c3cd1d642 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_about.png differ diff --git a/res/drawable-xhdpi/ic_settings_accessibility.png b/res/drawable-xhdpi/ic_settings_accessibility.png new file mode 100644 index 00000000000..2fec7a3e8aa Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_accessibility.png differ diff --git a/res/drawable-xhdpi/ic_settings_advanced.png b/res/drawable-xhdpi/ic_settings_advanced.png new file mode 100644 index 00000000000..40d91c17d78 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_advanced.png differ diff --git a/res/drawable-xhdpi/ic_settings_applications.png b/res/drawable-xhdpi/ic_settings_applications.png new file mode 100644 index 00000000000..8eda83fc81d Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_applications.png differ diff --git a/res/drawable-xhdpi/ic_settings_backup.png b/res/drawable-xhdpi/ic_settings_backup.png new file mode 100644 index 00000000000..5ebb9fc4141 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_backup.png differ diff --git a/res/drawable-xhdpi/ic_settings_battery.png b/res/drawable-xhdpi/ic_settings_battery.png new file mode 100644 index 00000000000..f7aa7a4d625 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_battery.png differ diff --git a/res/drawable-xhdpi/ic_settings_bluetooth.png b/res/drawable-xhdpi/ic_settings_bluetooth.png new file mode 100644 index 00000000000..a75b550dde5 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_bluetooth.png differ diff --git a/res/drawable-xhdpi/ic_settings_bluetooth2.png b/res/drawable-xhdpi/ic_settings_bluetooth2.png new file mode 100644 index 00000000000..80a94ac279d Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_bluetooth2.png differ diff --git a/res/drawable-xhdpi/ic_settings_cell_standby.png b/res/drawable-xhdpi/ic_settings_cell_standby.png new file mode 100644 index 00000000000..cf783dcc224 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_cell_standby.png differ diff --git a/res/drawable-xhdpi/ic_settings_cmlauncher.png b/res/drawable-xhdpi/ic_settings_cmlauncher.png new file mode 100644 index 00000000000..5b3fa3f32f4 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_cmlauncher.png differ diff --git a/res/drawable-xhdpi/ic_settings_cmsettings.png b/res/drawable-xhdpi/ic_settings_cmsettings.png new file mode 100644 index 00000000000..303d42e4b3d Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_cmsettings.png differ diff --git a/res/drawable-xhdpi/ic_settings_data_usage.png b/res/drawable-xhdpi/ic_settings_data_usage.png new file mode 100644 index 00000000000..8c8f620bbf1 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_data_usage.png differ diff --git a/res/drawable-xhdpi/ic_settings_date_time.png b/res/drawable-xhdpi/ic_settings_date_time.png new file mode 100644 index 00000000000..ca8cac6909b Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_date_time.png differ diff --git a/res/drawable-xhdpi/ic_settings_development.png b/res/drawable-xhdpi/ic_settings_development.png new file mode 100644 index 00000000000..18d2dc88261 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_development.png differ diff --git a/res/drawable-xhdpi/ic_settings_display.png b/res/drawable-xhdpi/ic_settings_display.png new file mode 100644 index 00000000000..3f073b4d45a Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_display.png differ diff --git a/res/drawable-xhdpi/ic_settings_dock.png b/res/drawable-xhdpi/ic_settings_dock.png new file mode 100644 index 00000000000..483579a9780 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_dock.png differ diff --git a/res/drawable-xhdpi/ic_settings_language.png b/res/drawable-xhdpi/ic_settings_language.png new file mode 100644 index 00000000000..2c42db3aa57 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_language.png differ diff --git a/res/drawable-xhdpi/ic_settings_location.png b/res/drawable-xhdpi/ic_settings_location.png new file mode 100644 index 00000000000..29ed43cd8a3 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_location.png differ diff --git a/res/drawable-xhdpi/ic_settings_lockscreen.png b/res/drawable-xhdpi/ic_settings_lockscreen.png new file mode 100644 index 00000000000..f669da1907f Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_lockscreen.png differ diff --git a/res/drawable-xhdpi/ic_settings_performance.png b/res/drawable-xhdpi/ic_settings_performance.png new file mode 100644 index 00000000000..aa61cf57fae Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_performance.png differ diff --git a/res/drawable-xhdpi/ic_settings_phone_idle.png b/res/drawable-xhdpi/ic_settings_phone_idle.png new file mode 100644 index 00000000000..09c322f1bef Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_phone_idle.png differ diff --git a/res/drawable-xhdpi/ic_settings_placeholder.png b/res/drawable-xhdpi/ic_settings_placeholder.png new file mode 100644 index 00000000000..32d397fd44c Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_placeholder.png differ diff --git a/res/drawable-xhdpi/ic_settings_profiles.png b/res/drawable-xhdpi/ic_settings_profiles.png new file mode 100644 index 00000000000..d6c6911f800 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_profiles.png differ diff --git a/res/drawable-xhdpi/ic_settings_security.png b/res/drawable-xhdpi/ic_settings_security.png new file mode 100644 index 00000000000..b5a383a725c Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_security.png differ diff --git a/res/drawable-xhdpi/ic_settings_sound.png b/res/drawable-xhdpi/ic_settings_sound.png new file mode 100644 index 00000000000..687025d5f90 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_sound.png differ diff --git a/res/drawable-xhdpi/ic_settings_storage.png b/res/drawable-xhdpi/ic_settings_storage.png new file mode 100644 index 00000000000..0807c9f80dd Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_storage.png differ diff --git a/res/drawable-xhdpi/ic_settings_sync.png b/res/drawable-xhdpi/ic_settings_sync.png new file mode 100644 index 00000000000..a66d8a4f17f Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_sync.png differ diff --git a/res/drawable-xhdpi/ic_settings_system.png b/res/drawable-xhdpi/ic_settings_system.png new file mode 100644 index 00000000000..aa3b1fb2804 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_system.png differ diff --git a/res/drawable-xhdpi/ic_settings_themes.png b/res/drawable-xhdpi/ic_settings_themes.png new file mode 100644 index 00000000000..3c6b596f1b9 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_themes.png differ diff --git a/res/drawable-xhdpi/ic_settings_voice_calls.png b/res/drawable-xhdpi/ic_settings_voice_calls.png new file mode 100644 index 00000000000..07b90748f52 Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_voice_calls.png differ diff --git a/res/drawable-xhdpi/ic_settings_wifi.png b/res/drawable-xhdpi/ic_settings_wifi.png new file mode 100644 index 00000000000..2bd464811bc Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_wifi.png differ diff --git a/res/drawable-xhdpi/ic_settings_wireless.png b/res/drawable-xhdpi/ic_settings_wireless.png new file mode 100644 index 00000000000..79d0ef54f2e Binary files /dev/null and b/res/drawable-xhdpi/ic_settings_wireless.png differ diff --git a/res/drawable-xhdpi/ic_sync_anim_holo.png b/res/drawable-xhdpi/ic_sync_anim_holo.png new file mode 100644 index 00000000000..d315e9530a5 Binary files /dev/null and b/res/drawable-xhdpi/ic_sync_anim_holo.png differ diff --git a/res/drawable-xhdpi/ic_sync_error.png b/res/drawable-xhdpi/ic_sync_error.png new file mode 100644 index 00000000000..b9a53578251 Binary files /dev/null and b/res/drawable-xhdpi/ic_sync_error.png differ diff --git a/res/drawable-xhdpi/ic_sync_error_holo.png b/res/drawable-xhdpi/ic_sync_error_holo.png new file mode 100644 index 00000000000..85f19bfa8a2 Binary files /dev/null and b/res/drawable-xhdpi/ic_sync_error_holo.png differ diff --git a/res/drawable-xhdpi/ic_sync_green.png b/res/drawable-xhdpi/ic_sync_green.png new file mode 100644 index 00000000000..1c4959449c1 Binary files /dev/null and b/res/drawable-xhdpi/ic_sync_green.png differ diff --git a/res/drawable-xhdpi/ic_sync_green_holo.png b/res/drawable-xhdpi/ic_sync_green_holo.png new file mode 100644 index 00000000000..95e2d7d46df Binary files /dev/null and b/res/drawable-xhdpi/ic_sync_green_holo.png differ diff --git a/res/drawable-xhdpi/ic_sync_grey.png b/res/drawable-xhdpi/ic_sync_grey.png new file mode 100644 index 00000000000..8a17f3722a6 Binary files /dev/null and b/res/drawable-xhdpi/ic_sync_grey.png differ diff --git a/res/drawable-xhdpi/ic_sync_grey_holo.png b/res/drawable-xhdpi/ic_sync_grey_holo.png new file mode 100644 index 00000000000..10cc48abd27 Binary files /dev/null and b/res/drawable-xhdpi/ic_sync_grey_holo.png differ diff --git a/res/drawable-xhdpi/ic_sync_red.png b/res/drawable-xhdpi/ic_sync_red.png new file mode 100644 index 00000000000..92d02e117d3 Binary files /dev/null and b/res/drawable-xhdpi/ic_sync_red.png differ diff --git a/res/drawable-xhdpi/ic_sync_red_holo.png b/res/drawable-xhdpi/ic_sync_red_holo.png new file mode 100644 index 00000000000..c4b9136d9ea Binary files /dev/null and b/res/drawable-xhdpi/ic_sync_red_holo.png differ diff --git a/res/drawable-xhdpi/ic_sysbar_quicksettings.png b/res/drawable-xhdpi/ic_sysbar_quicksettings.png new file mode 100644 index 00000000000..a057db8b298 Binary files /dev/null and b/res/drawable-xhdpi/ic_sysbar_quicksettings.png differ diff --git a/res/drawable-xhdpi/ic_tab_selected_all.png b/res/drawable-xhdpi/ic_tab_selected_all.png new file mode 100644 index 00000000000..b59933ba4f3 Binary files /dev/null and b/res/drawable-xhdpi/ic_tab_selected_all.png differ diff --git a/res/drawable-xhdpi/ic_tab_selected_download.png b/res/drawable-xhdpi/ic_tab_selected_download.png new file mode 100644 index 00000000000..8e76bbbd7de Binary files /dev/null and b/res/drawable-xhdpi/ic_tab_selected_download.png differ diff --git a/res/drawable-xhdpi/ic_tab_selected_running.png b/res/drawable-xhdpi/ic_tab_selected_running.png new file mode 100644 index 00000000000..8eda83fc81d Binary files /dev/null and b/res/drawable-xhdpi/ic_tab_selected_running.png differ diff --git a/res/drawable-xhdpi/ic_tab_selected_sdcard.png b/res/drawable-xhdpi/ic_tab_selected_sdcard.png new file mode 100644 index 00000000000..536326c5e8d Binary files /dev/null and b/res/drawable-xhdpi/ic_tab_selected_sdcard.png differ diff --git a/res/drawable-xhdpi/ic_tab_unselected_all.png b/res/drawable-xhdpi/ic_tab_unselected_all.png new file mode 100644 index 00000000000..b59933ba4f3 Binary files /dev/null and b/res/drawable-xhdpi/ic_tab_unselected_all.png differ diff --git a/res/drawable-xhdpi/ic_tab_unselected_download.png b/res/drawable-xhdpi/ic_tab_unselected_download.png new file mode 100644 index 00000000000..8e76bbbd7de Binary files /dev/null and b/res/drawable-xhdpi/ic_tab_unselected_download.png differ diff --git a/res/drawable-xhdpi/ic_tab_unselected_running.png b/res/drawable-xhdpi/ic_tab_unselected_running.png new file mode 100644 index 00000000000..8eda83fc81d Binary files /dev/null and b/res/drawable-xhdpi/ic_tab_unselected_running.png differ diff --git a/res/drawable-xhdpi/ic_tab_unselected_sdcard.png b/res/drawable-xhdpi/ic_tab_unselected_sdcard.png new file mode 100644 index 00000000000..536326c5e8d Binary files /dev/null and b/res/drawable-xhdpi/ic_tab_unselected_sdcard.png differ diff --git a/res/drawable-xhdpi/ic_wifi_lock_signal_1.png b/res/drawable-xhdpi/ic_wifi_lock_signal_1.png new file mode 100644 index 00000000000..8b8cb03d34e Binary files /dev/null and b/res/drawable-xhdpi/ic_wifi_lock_signal_1.png differ diff --git a/res/drawable-xhdpi/ic_wifi_lock_signal_2.png b/res/drawable-xhdpi/ic_wifi_lock_signal_2.png new file mode 100644 index 00000000000..411269c53b2 Binary files /dev/null and b/res/drawable-xhdpi/ic_wifi_lock_signal_2.png differ diff --git a/res/drawable-xhdpi/ic_wifi_lock_signal_3.png b/res/drawable-xhdpi/ic_wifi_lock_signal_3.png new file mode 100644 index 00000000000..f0d92a05572 Binary files /dev/null and b/res/drawable-xhdpi/ic_wifi_lock_signal_3.png differ diff --git a/res/drawable-xhdpi/ic_wifi_lock_signal_4.png b/res/drawable-xhdpi/ic_wifi_lock_signal_4.png new file mode 100644 index 00000000000..d26694d7af2 Binary files /dev/null and b/res/drawable-xhdpi/ic_wifi_lock_signal_4.png differ diff --git a/res/drawable-xhdpi/ic_wifi_signal_1.png b/res/drawable-xhdpi/ic_wifi_signal_1.png new file mode 100644 index 00000000000..3fded085f44 Binary files /dev/null and b/res/drawable-xhdpi/ic_wifi_signal_1.png differ diff --git a/res/drawable-xhdpi/ic_wifi_signal_2.png b/res/drawable-xhdpi/ic_wifi_signal_2.png new file mode 100644 index 00000000000..3a32026d33c Binary files /dev/null and b/res/drawable-xhdpi/ic_wifi_signal_2.png differ diff --git a/res/drawable-xhdpi/ic_wifi_signal_3.png b/res/drawable-xhdpi/ic_wifi_signal_3.png new file mode 100644 index 00000000000..161694093c2 Binary files /dev/null and b/res/drawable-xhdpi/ic_wifi_signal_3.png differ diff --git a/res/drawable-xhdpi/ic_wifi_signal_4.png b/res/drawable-xhdpi/ic_wifi_signal_4.png new file mode 100644 index 00000000000..8b256c32526 Binary files /dev/null and b/res/drawable-xhdpi/ic_wifi_signal_4.png differ diff --git a/res/drawable-xhdpi/lock_anim_0.png b/res/drawable-xhdpi/lock_anim_0.png new file mode 100644 index 00000000000..5e8e6dc5e02 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_0.png differ diff --git a/res/drawable-xhdpi/lock_anim_1.png b/res/drawable-xhdpi/lock_anim_1.png new file mode 100644 index 00000000000..96fbd03a6b6 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_1.png differ diff --git a/res/drawable-xhdpi/lock_anim_10.png b/res/drawable-xhdpi/lock_anim_10.png new file mode 100644 index 00000000000..e2e83b194bf Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_10.png differ diff --git a/res/drawable-xhdpi/lock_anim_11.png b/res/drawable-xhdpi/lock_anim_11.png new file mode 100644 index 00000000000..68de396c42c Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_11.png differ diff --git a/res/drawable-xhdpi/lock_anim_12.png b/res/drawable-xhdpi/lock_anim_12.png new file mode 100644 index 00000000000..11e51c783e9 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_12.png differ diff --git a/res/drawable-xhdpi/lock_anim_13.png b/res/drawable-xhdpi/lock_anim_13.png new file mode 100644 index 00000000000..86a611594e0 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_13.png differ diff --git a/res/drawable-xhdpi/lock_anim_14.png b/res/drawable-xhdpi/lock_anim_14.png new file mode 100644 index 00000000000..5bff2faabf4 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_14.png differ diff --git a/res/drawable-xhdpi/lock_anim_2.png b/res/drawable-xhdpi/lock_anim_2.png new file mode 100644 index 00000000000..68e59c844cc Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_2.png differ diff --git a/res/drawable-xhdpi/lock_anim_3.png b/res/drawable-xhdpi/lock_anim_3.png new file mode 100644 index 00000000000..16272ed461d Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_3.png differ diff --git a/res/drawable-xhdpi/lock_anim_4.png b/res/drawable-xhdpi/lock_anim_4.png new file mode 100644 index 00000000000..af6fbc4e1a8 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_4.png differ diff --git a/res/drawable-xhdpi/lock_anim_5.png b/res/drawable-xhdpi/lock_anim_5.png new file mode 100644 index 00000000000..1e631b53fb3 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_5.png differ diff --git a/res/drawable-xhdpi/lock_anim_6.png b/res/drawable-xhdpi/lock_anim_6.png new file mode 100644 index 00000000000..93fcf399989 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_6.png differ diff --git a/res/drawable-xhdpi/lock_anim_7.png b/res/drawable-xhdpi/lock_anim_7.png new file mode 100644 index 00000000000..b5c52778c17 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_7.png differ diff --git a/res/drawable-xhdpi/lock_anim_8.png b/res/drawable-xhdpi/lock_anim_8.png new file mode 100644 index 00000000000..bcaec0df402 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_8.png differ diff --git a/res/drawable-xhdpi/lock_anim_9.png b/res/drawable-xhdpi/lock_anim_9.png new file mode 100644 index 00000000000..c481d1ac4e7 Binary files /dev/null and b/res/drawable-xhdpi/lock_anim_9.png differ diff --git a/res/drawable-xhdpi/nav_divider.png b/res/drawable-xhdpi/nav_divider.png new file mode 100644 index 00000000000..00e3852d5b6 Binary files /dev/null and b/res/drawable-xhdpi/nav_divider.png differ diff --git a/res/drawable-xhdpi/nfc_writer.png b/res/drawable-xhdpi/nfc_writer.png new file mode 100644 index 00000000000..60f4d6ec75d Binary files /dev/null and b/res/drawable-xhdpi/nfc_writer.png differ diff --git a/res/drawable-xhdpi/password_field_default.9.png b/res/drawable-xhdpi/password_field_default.9.png new file mode 100644 index 00000000000..cf8329e3862 Binary files /dev/null and b/res/drawable-xhdpi/password_field_default.9.png differ diff --git a/res/drawable-xhdpi/stat_navbar_edit_off.png b/res/drawable-xhdpi/stat_navbar_edit_off.png new file mode 100644 index 00000000000..d0c63a0f7d9 Binary files /dev/null and b/res/drawable-xhdpi/stat_navbar_edit_off.png differ diff --git a/res/drawable-xhdpi/stat_navbar_edit_on.png b/res/drawable-xhdpi/stat_navbar_edit_on.png new file mode 100644 index 00000000000..1bfee82ca1d Binary files /dev/null and b/res/drawable-xhdpi/stat_navbar_edit_on.png differ diff --git a/res/drawable-xhdpi/stat_sys_phone_call.png b/res/drawable-xhdpi/stat_sys_phone_call.png new file mode 100644 index 00000000000..30898587065 Binary files /dev/null and b/res/drawable-xhdpi/stat_sys_phone_call.png differ diff --git a/res/drawable/activities_icon.png b/res/drawable/activities_icon.png new file mode 100644 index 00000000000..abd62e25181 Binary files /dev/null and b/res/drawable/activities_icon.png differ diff --git a/res/drawable/app_settings.png b/res/drawable/app_settings.png deleted file mode 100644 index ed23bbf8f3e..00000000000 Binary files a/res/drawable/app_settings.png and /dev/null differ diff --git a/res/drawable/appwidget_bg.9.png b/res/drawable/appwidget_bg.9.png deleted file mode 100644 index 688d131cd84..00000000000 Binary files a/res/drawable/appwidget_bg.9.png and /dev/null differ diff --git a/res/drawable/appwidget_outer.xml b/res/drawable/appwidget_button_center.xml similarity index 66% rename from res/drawable/appwidget_outer.xml rename to res/drawable/appwidget_button_center.xml index d6f3cb6261b..3af32e585a5 100644 --- a/res/drawable/appwidget_outer.xml +++ b/res/drawable/appwidget_button_center.xml @@ -16,18 +16,13 @@ - - + android:drawable="@drawable/appwidget_inner_pressed_c_holo" /> - - + android:state_window_focused="true" + android:drawable="@drawable/appwidget_inner_focused_c_holo" /> + android:drawable="@android:color/transparent" /> diff --git a/res/drawable/appwidget_inner.xml b/res/drawable/appwidget_button_left.xml similarity index 66% rename from res/drawable/appwidget_inner.xml rename to res/drawable/appwidget_button_left.xml index fc7bb6dc254..e13cf995c67 100644 --- a/res/drawable/appwidget_inner.xml +++ b/res/drawable/appwidget_button_left.xml @@ -16,18 +16,13 @@ - - + android:drawable="@drawable/appwidget_inner_pressed_l_holo" /> - - + android:state_window_focused="true" + android:drawable="@drawable/appwidget_inner_focused_l_holo" /> + android:drawable="@android:color/transparent" /> diff --git a/res/drawable/appwidget_button_right.xml b/res/drawable/appwidget_button_right.xml new file mode 100644 index 00000000000..e29c2fe5648 --- /dev/null +++ b/res/drawable/appwidget_button_right.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + diff --git a/res/drawable/appwidget_inner_default.9.png b/res/drawable/appwidget_inner_default.9.png deleted file mode 100644 index f7e9db4d7cc..00000000000 Binary files a/res/drawable/appwidget_inner_default.9.png and /dev/null differ diff --git a/res/drawable/appwidget_inner_pressed.9.png b/res/drawable/appwidget_inner_pressed.9.png deleted file mode 100644 index e2b62b79d0b..00000000000 Binary files a/res/drawable/appwidget_inner_pressed.9.png and /dev/null differ diff --git a/res/drawable/appwidget_inner_selected.9.png b/res/drawable/appwidget_inner_selected.9.png deleted file mode 100644 index b6773915f5d..00000000000 Binary files a/res/drawable/appwidget_inner_selected.9.png and /dev/null differ diff --git a/res/drawable/appwidget_outer_default.9.png b/res/drawable/appwidget_outer_default.9.png deleted file mode 100644 index d84e56a4070..00000000000 Binary files a/res/drawable/appwidget_outer_default.9.png and /dev/null differ diff --git a/res/drawable/appwidget_outer_pressed.9.png b/res/drawable/appwidget_outer_pressed.9.png deleted file mode 100644 index 5348fef5510..00000000000 Binary files a/res/drawable/appwidget_outer_pressed.9.png and /dev/null differ diff --git a/res/drawable/appwidget_outer_selected.9.png b/res/drawable/appwidget_outer_selected.9.png deleted file mode 100644 index c6d5df77b2f..00000000000 Binary files a/res/drawable/appwidget_outer_selected.9.png and /dev/null differ diff --git a/res/drawable/data_sweep_left.xml b/res/drawable/data_sweep_left.xml new file mode 100644 index 00000000000..3532cbc7451 --- /dev/null +++ b/res/drawable/data_sweep_left.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/res/drawable/data_sweep_limit.xml b/res/drawable/data_sweep_limit.xml new file mode 100644 index 00000000000..cfdbfbbc771 --- /dev/null +++ b/res/drawable/data_sweep_limit.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/res/drawable/data_sweep_right.xml b/res/drawable/data_sweep_right.xml new file mode 100644 index 00000000000..cbe2a85f38f --- /dev/null +++ b/res/drawable/data_sweep_right.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/res/drawable/data_sweep_warning.xml b/res/drawable/data_sweep_warning.xml new file mode 100644 index 00000000000..8fbe8e74ae8 --- /dev/null +++ b/res/drawable/data_sweep_warning.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/res/drawable/data_usage_bar.xml b/res/drawable/data_usage_bar.xml new file mode 100644 index 00000000000..96f1caedd0e --- /dev/null +++ b/res/drawable/data_usage_bar.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/drawable/data_usage_sweep_background.xml b/res/drawable/data_usage_sweep_background.xml new file mode 100644 index 00000000000..86f1d0996c1 --- /dev/null +++ b/res/drawable/data_usage_sweep_background.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + diff --git a/res/drawable/empty_icon.xml b/res/drawable/empty_icon.xml new file mode 100644 index 00000000000..db55af58d6d --- /dev/null +++ b/res/drawable/empty_icon.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/res/drawable/ic_bt_cellphone.png b/res/drawable/ic_bt_cellphone.png deleted file mode 100755 index 4bf7ba550d2..00000000000 Binary files a/res/drawable/ic_bt_cellphone.png and /dev/null differ diff --git a/res/drawable/ic_bt_headphones_a2dp.png b/res/drawable/ic_bt_headphones_a2dp.png deleted file mode 100755 index b9bfec6d04d..00000000000 Binary files a/res/drawable/ic_bt_headphones_a2dp.png and /dev/null differ diff --git a/res/drawable/ic_bt_headset_hfp.png b/res/drawable/ic_bt_headset_hfp.png deleted file mode 100644 index cd91841af8a..00000000000 Binary files a/res/drawable/ic_bt_headset_hfp.png and /dev/null differ diff --git a/res/drawable/ic_launcher_settings.png b/res/drawable/ic_launcher_settings.png deleted file mode 100755 index 16db056f788..00000000000 Binary files a/res/drawable/ic_launcher_settings.png and /dev/null differ diff --git a/res/drawable/ic_list_sync_anim.xml b/res/drawable/ic_list_sync_anim.xml new file mode 100644 index 00000000000..e70c300dba6 --- /dev/null +++ b/res/drawable/ic_list_sync_anim.xml @@ -0,0 +1,24 @@ + + + + diff --git a/res/drawable/ic_menu_3d_globe.png b/res/drawable/ic_menu_3d_globe.png deleted file mode 100644 index 638e7fdbe61..00000000000 Binary files a/res/drawable/ic_menu_3d_globe.png and /dev/null differ diff --git a/res/drawable/ic_menu_add.png b/res/drawable/ic_menu_add.png deleted file mode 100755 index 6752bfd1007..00000000000 Binary files a/res/drawable/ic_menu_add.png and /dev/null differ diff --git a/res/drawable/ic_menu_filter_settings.png b/res/drawable/ic_menu_filter_settings.png deleted file mode 100755 index 7be883aeb14..00000000000 Binary files a/res/drawable/ic_menu_filter_settings.png and /dev/null differ diff --git a/res/drawable/ic_network_signal_0.png b/res/drawable/ic_network_signal_0.png deleted file mode 100755 index 150e3453d51..00000000000 Binary files a/res/drawable/ic_network_signal_0.png and /dev/null differ diff --git a/res/drawable/ic_network_signal_1.png b/res/drawable/ic_network_signal_1.png deleted file mode 100755 index bc99c0f9ed1..00000000000 Binary files a/res/drawable/ic_network_signal_1.png and /dev/null differ diff --git a/res/drawable/ic_network_signal_2.png b/res/drawable/ic_network_signal_2.png deleted file mode 100755 index 9d5d611d8fc..00000000000 Binary files a/res/drawable/ic_network_signal_2.png and /dev/null differ diff --git a/res/drawable/ic_network_signal_3.png b/res/drawable/ic_network_signal_3.png deleted file mode 100755 index 259ba2d3952..00000000000 Binary files a/res/drawable/ic_network_signal_3.png and /dev/null differ diff --git a/res/drawable/ic_network_signal_4.png b/res/drawable/ic_network_signal_4.png deleted file mode 100755 index 605b144b14d..00000000000 Binary files a/res/drawable/ic_network_signal_4.png and /dev/null differ diff --git a/res/drawable/ic_popup_brightness.png b/res/drawable/ic_popup_brightness.png deleted file mode 100755 index e9172a66de9..00000000000 Binary files a/res/drawable/ic_popup_brightness.png and /dev/null differ diff --git a/res/drawable/ic_tab_all.xml b/res/drawable/ic_tab_all.xml new file mode 100644 index 00000000000..9e5756b3e35 --- /dev/null +++ b/res/drawable/ic_tab_all.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/res/drawable/ic_tab_download.xml b/res/drawable/ic_tab_download.xml new file mode 100644 index 00000000000..d126f5b76fc --- /dev/null +++ b/res/drawable/ic_tab_download.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/res/drawable/ic_tab_running.xml b/res/drawable/ic_tab_running.xml new file mode 100644 index 00000000000..1044acc3af8 --- /dev/null +++ b/res/drawable/ic_tab_running.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/res/drawable/ic_tab_sdcard.xml b/res/drawable/ic_tab_sdcard.xml new file mode 100644 index 00000000000..2088f939d02 --- /dev/null +++ b/res/drawable/ic_tab_sdcard.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/res/drawable/ic_wifi_lock_signal_1.png b/res/drawable/ic_wifi_lock_signal_1.png deleted file mode 100755 index af78e058b10..00000000000 Binary files a/res/drawable/ic_wifi_lock_signal_1.png and /dev/null differ diff --git a/res/drawable/ic_wifi_lock_signal_2.png b/res/drawable/ic_wifi_lock_signal_2.png deleted file mode 100755 index b5b373edaea..00000000000 Binary files a/res/drawable/ic_wifi_lock_signal_2.png and /dev/null differ diff --git a/res/drawable/ic_wifi_lock_signal_3.png b/res/drawable/ic_wifi_lock_signal_3.png deleted file mode 100755 index 49ac417a0c3..00000000000 Binary files a/res/drawable/ic_wifi_lock_signal_3.png and /dev/null differ diff --git a/res/drawable/ic_wifi_lock_signal_4.png b/res/drawable/ic_wifi_lock_signal_4.png deleted file mode 100644 index cd86ca08643..00000000000 Binary files a/res/drawable/ic_wifi_lock_signal_4.png and /dev/null differ diff --git a/res/drawable/ic_wifi_signal_1.png b/res/drawable/ic_wifi_signal_1.png deleted file mode 100755 index 7a524e30e9e..00000000000 Binary files a/res/drawable/ic_wifi_signal_1.png and /dev/null differ diff --git a/res/drawable/ic_wifi_signal_2.png b/res/drawable/ic_wifi_signal_2.png deleted file mode 100755 index efe4b5fa485..00000000000 Binary files a/res/drawable/ic_wifi_signal_2.png and /dev/null differ diff --git a/res/drawable/ic_wifi_signal_3.png b/res/drawable/ic_wifi_signal_3.png deleted file mode 100755 index a720bb06569..00000000000 Binary files a/res/drawable/ic_wifi_signal_3.png and /dev/null differ diff --git a/res/drawable/ic_wifi_signal_4.png b/res/drawable/ic_wifi_signal_4.png deleted file mode 100644 index d45028e35c5..00000000000 Binary files a/res/drawable/ic_wifi_signal_4.png and /dev/null differ diff --git a/res/drawable/icon.png b/res/drawable/icon.png deleted file mode 100755 index 16db056f788..00000000000 Binary files a/res/drawable/icon.png and /dev/null differ diff --git a/res/drawable/lock_anim.xml b/res/drawable/lock_anim.xml index ca1f9d87935..8ec31a67a16 100644 --- a/res/drawable/lock_anim.xml +++ b/res/drawable/lock_anim.xml @@ -1,30 +1,37 @@ - - - - - - - - + + + + + + + + + + + + + + + diff --git a/res/drawable/navbar_tut.png b/res/drawable/navbar_tut.png new file mode 100644 index 00000000000..44578f5d98e Binary files /dev/null and b/res/drawable/navbar_tut.png differ diff --git a/res/drawable/widget_btn_bluetooth.png b/res/drawable/widget_btn_bluetooth.png deleted file mode 100644 index f32d0b266fb..00000000000 Binary files a/res/drawable/widget_btn_bluetooth.png and /dev/null differ diff --git a/res/drawable/widget_btn_bluetooth_gray.png b/res/drawable/widget_btn_bluetooth_gray.png deleted file mode 100644 index a633554d667..00000000000 Binary files a/res/drawable/widget_btn_bluetooth_gray.png and /dev/null differ diff --git a/res/drawable/widget_btn_bluetooth_off.png b/res/drawable/widget_btn_bluetooth_off.png deleted file mode 100644 index c0ef641ed15..00000000000 Binary files a/res/drawable/widget_btn_bluetooth_off.png and /dev/null differ diff --git a/res/drawable/widget_btn_brightness.png b/res/drawable/widget_btn_brightness.png deleted file mode 100644 index 9a7c7b91965..00000000000 Binary files a/res/drawable/widget_btn_brightness.png and /dev/null differ diff --git a/res/drawable/widget_btn_brightness_off.png b/res/drawable/widget_btn_brightness_off.png deleted file mode 100644 index 46dc508ac9e..00000000000 Binary files a/res/drawable/widget_btn_brightness_off.png and /dev/null differ diff --git a/res/drawable/widget_btn_gps.png b/res/drawable/widget_btn_gps.png deleted file mode 100644 index b21e8c8bff1..00000000000 Binary files a/res/drawable/widget_btn_gps.png and /dev/null differ diff --git a/res/drawable/widget_btn_gps_off.png b/res/drawable/widget_btn_gps_off.png deleted file mode 100644 index 042fefb0e65..00000000000 Binary files a/res/drawable/widget_btn_gps_off.png and /dev/null differ diff --git a/res/drawable/widget_btn_sync.png b/res/drawable/widget_btn_sync.png deleted file mode 100644 index 6133233d372..00000000000 Binary files a/res/drawable/widget_btn_sync.png and /dev/null differ diff --git a/res/drawable/widget_btn_sync_off.png b/res/drawable/widget_btn_sync_off.png deleted file mode 100644 index 192cad88d73..00000000000 Binary files a/res/drawable/widget_btn_sync_off.png and /dev/null differ diff --git a/res/drawable/widget_btn_wifi.png b/res/drawable/widget_btn_wifi.png deleted file mode 100644 index 2d396810bd2..00000000000 Binary files a/res/drawable/widget_btn_wifi.png and /dev/null differ diff --git a/res/drawable/widget_btn_wifi_gray.png b/res/drawable/widget_btn_wifi_gray.png deleted file mode 100644 index 76f36e84de8..00000000000 Binary files a/res/drawable/widget_btn_wifi_gray.png and /dev/null differ diff --git a/res/drawable/widget_btn_wifi_off.png b/res/drawable/widget_btn_wifi_off.png deleted file mode 100644 index 9b70cf1e215..00000000000 Binary files a/res/drawable/widget_btn_wifi_off.png and /dev/null differ diff --git a/res/layout-finger/order_power_widget_button_list_item.xml b/res/layout-finger/order_power_widget_button_list_item.xml new file mode 100644 index 00000000000..8d9fc45540b --- /dev/null +++ b/res/layout-finger/order_power_widget_button_list_item.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/res/layout-finger/order_power_widget_buttons_activity.xml b/res/layout-finger/order_power_widget_buttons_activity.xml new file mode 100644 index 00000000000..42124a04e62 --- /dev/null +++ b/res/layout-finger/order_power_widget_buttons_activity.xml @@ -0,0 +1,32 @@ + + + + + + + + diff --git a/res/layout-h720dp/tab_widget.xml b/res/layout-h720dp/tab_widget.xml new file mode 100644 index 00000000000..5a4e5802038 --- /dev/null +++ b/res/layout-h720dp/tab_widget.xml @@ -0,0 +1,29 @@ + + + + + + + + diff --git a/res/layout-land/choose_lock_password.xml b/res/layout-land/choose_lock_password.xml new file mode 100644 index 00000000000..4edc99c25d1 --- /dev/null +++ b/res/layout-land/choose_lock_password.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + +