diff options
725 files changed, 258 insertions, 129 deletions
diff --git a/Android.mk b/Android.mk index 941cf85de762..1c8051b8d6cd 100644 --- a/Android.mk +++ b/Android.mk @@ -416,6 +416,8 @@ web_docs_sample_code_flags := \ resources/samples/SampleSyncAdapter "Sample Sync Adapter" \ -samplecode $(sample_dir)/SearchableDictionary \ resources/samples/SearchableDictionary "Searchable Dictionary v2" \ + -samplecode $(sample_dir)/SipDemo \ + resources/samples/SipDemo "SIP Demo" \ -samplecode $(sample_dir)/Snake \ resources/samples/Snake "Snake" \ -samplecode $(sample_dir)/SoftKeyboard \ diff --git a/core/java/android/nfc/INfcAdapter.aidl b/core/java/android/nfc/INfcAdapter.aidl index 7743ceb00282..cd08e332d148 100644 --- a/core/java/android/nfc/INfcAdapter.aidl +++ b/core/java/android/nfc/INfcAdapter.aidl @@ -39,8 +39,6 @@ interface INfcAdapter // NfcAdapter-class related methods boolean isEnabled(); - NdefMessage localGet(); - void localSet(in NdefMessage message); void openTagConnection(in Tag tag); // Non-public methods diff --git a/core/java/android/nfc/NfcAdapter.java b/core/java/android/nfc/NfcAdapter.java index cf80fafec08f..88b6ea43872c 100644 --- a/core/java/android/nfc/NfcAdapter.java +++ b/core/java/android/nfc/NfcAdapter.java @@ -301,48 +301,6 @@ public final class NfcAdapter { } /** - * Set the NDEF Message that this NFC adapter should appear as to Tag - * readers. - * <p> - * Any Tag reader can read the contents of the local tag when it is in - * proximity, without any further user confirmation. - * <p> - * The implementation of this method must either - * <ul> - * <li>act as a passive tag containing this NDEF message - * <li>provide the NDEF message on over LLCP to peer NFC adapters - * </ul> - * The NDEF message is preserved across reboot. - * <p>Requires {@link android.Manifest.permission#NFC} permission. - * - * @param message NDEF message to make public - * @hide - */ - public void setLocalNdefMessage(NdefMessage message) { - try { - mService.localSet(message); - } catch (RemoteException e) { - attemptDeadServiceRecovery(e); - } - } - - /** - * Get the NDEF Message that this adapter appears as to Tag readers. - * <p>Requires {@link android.Manifest.permission#NFC} permission. - * - * @return NDEF Message that is publicly readable - * @hide - */ - public NdefMessage getLocalNdefMessage() { - try { - return mService.localGet(); - } catch (RemoteException e) { - attemptDeadServiceRecovery(e); - return null; - } - } - - /** * Create a raw tag connection to the default Target * <p>Requires {@link android.Manifest.permission#NFC} permission. * @hide diff --git a/core/res/res/drawable-en-ldpi/sym_keyboard_delete.png b/core/res/res/drawable-en-ldpi/sym_keyboard_delete.png Binary files differnew file mode 100644 index 000000000000..d9d56539137a --- /dev/null +++ b/core/res/res/drawable-en-ldpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-en-ldpi/sym_keyboard_feedback_delete.png b/core/res/res/drawable-en-ldpi/sym_keyboard_feedback_delete.png Binary files differnew file mode 100644 index 000000000000..8922bf92c467 --- /dev/null +++ b/core/res/res/drawable-en-ldpi/sym_keyboard_feedback_delete.png diff --git a/core/res/res/drawable-land-ldpi/bottombar_565.png b/core/res/res/drawable-land-ldpi/bottombar_565.png Binary files differnew file mode 100644 index 000000000000..112c17dc51c4 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/bottombar_565.png diff --git a/core/res/res/drawable-land-ldpi/btn_lock_normal.9.png b/core/res/res/drawable-land-ldpi/btn_lock_normal.9.png Binary files differnew file mode 100644 index 000000000000..e685adcce50c --- /dev/null +++ b/core/res/res/drawable-land-ldpi/btn_lock_normal.9.png diff --git a/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_off.png b/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_off.png Binary files differnew file mode 100644 index 000000000000..a4e3edf1c42a --- /dev/null +++ b/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_off.png diff --git a/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_on.png b/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_on.png Binary files differnew file mode 100644 index 000000000000..f8190b56f498 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/ic_jog_dial_sound_on.png diff --git a/core/res/res/drawable-land-ldpi/ic_jog_dial_unlock.png b/core/res/res/drawable-land-ldpi/ic_jog_dial_unlock.png Binary files differnew file mode 100644 index 000000000000..16fa0db9942a --- /dev/null +++ b/core/res/res/drawable-land-ldpi/ic_jog_dial_unlock.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_gray.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_gray.9.png Binary files differnew file mode 100644 index 000000000000..e16e9f63a80c --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_gray.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_green.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_green.9.png Binary files differnew file mode 100644 index 000000000000..90211df96e5a --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_green.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_red.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_red.9.png Binary files differnew file mode 100644 index 000000000000..154ae8e13593 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_red.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png Binary files differnew file mode 100644 index 000000000000..1e69e4d65c83 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_normal.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_normal.9.png Binary files differnew file mode 100644 index 000000000000..09710a585052 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_normal.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_pressed.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_pressed.9.png Binary files differnew file mode 100644 index 000000000000..158ce859bfa6 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_left_end_pressed.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_gray.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_gray.9.png Binary files differnew file mode 100644 index 000000000000..1be54d4d1dff --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_gray.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_green.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_green.9.png Binary files differnew file mode 100644 index 000000000000..4ef4d6925c1b --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_green.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_red.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_red.9.png Binary files differnew file mode 100644 index 000000000000..dad283ee0d34 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_red.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png Binary files differnew file mode 100644 index 000000000000..f7aa85a2b16a --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_normal.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_normal.9.png Binary files differnew file mode 100644 index 000000000000..23860ceb87fe --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_normal.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_pressed.9.png b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_pressed.9.png Binary files differnew file mode 100644 index 000000000000..1105fe5a1e7c --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_bar_right_end_pressed.9.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_gray.png b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_gray.png Binary files differnew file mode 100644 index 000000000000..945851d6c558 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_gray.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_green.png b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_green.png Binary files differnew file mode 100644 index 000000000000..07029272f2fa --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_green.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_red.png b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_red.png Binary files differnew file mode 100644 index 000000000000..d79f46cd66ce --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_red.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_yellow.png b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_yellow.png Binary files differnew file mode 100644 index 000000000000..8e4ef9ac3927 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_confirm_yellow.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_normal.png b/core/res/res/drawable-land-ldpi/jog_tab_left_normal.png Binary files differnew file mode 100644 index 000000000000..ee6d98c5e1ab --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_normal.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_left_pressed.png b/core/res/res/drawable-land-ldpi/jog_tab_left_pressed.png Binary files differnew file mode 100644 index 000000000000..727fdbbdea6e --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_left_pressed.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_gray.png b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_gray.png Binary files differnew file mode 100644 index 000000000000..93d0bf4fadd6 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_gray.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_green.png b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_green.png Binary files differnew file mode 100644 index 000000000000..d49c831e57e0 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_green.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_red.png b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_red.png Binary files differnew file mode 100644 index 000000000000..29bddcfee15b --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_red.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_yellow.png b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_yellow.png Binary files differnew file mode 100644 index 000000000000..4cefb0c88f2c --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_confirm_yellow.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_normal.png b/core/res/res/drawable-land-ldpi/jog_tab_right_normal.png Binary files differnew file mode 100644 index 000000000000..30fa00293ff2 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_normal.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_right_pressed.png b/core/res/res/drawable-land-ldpi/jog_tab_right_pressed.png Binary files differnew file mode 100644 index 000000000000..f2d358bb3ab4 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_right_pressed.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_target_gray.png b/core/res/res/drawable-land-ldpi/jog_tab_target_gray.png Binary files differnew file mode 100644 index 000000000000..1e76bc1f0226 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_target_gray.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_target_green.png b/core/res/res/drawable-land-ldpi/jog_tab_target_green.png Binary files differnew file mode 100644 index 000000000000..917769e0a83a --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_target_green.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_target_red.png b/core/res/res/drawable-land-ldpi/jog_tab_target_red.png Binary files differnew file mode 100644 index 000000000000..3501ba382970 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_target_red.png diff --git a/core/res/res/drawable-land-ldpi/jog_tab_target_yellow.png b/core/res/res/drawable-land-ldpi/jog_tab_target_yellow.png Binary files differnew file mode 100644 index 000000000000..ee795a3aa4d5 --- /dev/null +++ b/core/res/res/drawable-land-ldpi/jog_tab_target_yellow.png diff --git a/core/res/res/drawable-ldpi/activity_title_bar.9.png b/core/res/res/drawable-ldpi/activity_title_bar.9.png Binary files differnew file mode 100644 index 000000000000..8aaa7d1850c4 --- /dev/null +++ b/core/res/res/drawable-ldpi/activity_title_bar.9.png diff --git a/core/res/res/drawable-ldpi/arrow_down_float.png b/core/res/res/drawable-ldpi/arrow_down_float.png Binary files differnew file mode 100644 index 000000000000..c41340da4617 --- /dev/null +++ b/core/res/res/drawable-ldpi/arrow_down_float.png diff --git a/core/res/res/drawable-ldpi/arrow_up_float.png b/core/res/res/drawable-ldpi/arrow_up_float.png Binary files differnew file mode 100644 index 000000000000..8b60f121600d --- /dev/null +++ b/core/res/res/drawable-ldpi/arrow_up_float.png diff --git a/core/res/res/drawable-ldpi/battery_charge_background.png b/core/res/res/drawable-ldpi/battery_charge_background.png Binary files differnew file mode 100644 index 000000000000..503c4f9fd991 --- /dev/null +++ b/core/res/res/drawable-ldpi/battery_charge_background.png diff --git a/core/res/res/drawable-ldpi/bottom_bar.png b/core/res/res/drawable-ldpi/bottom_bar.png Binary files differnew file mode 100644 index 000000000000..c80fd4ac477b --- /dev/null +++ b/core/res/res/drawable-ldpi/bottom_bar.png diff --git a/core/res/res/drawable-ldpi/btn_check_buttonless_off.png b/core/res/res/drawable-ldpi/btn_check_buttonless_off.png Binary files differnew file mode 100644 index 000000000000..327d2c624e13 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_buttonless_off.png diff --git a/core/res/res/drawable-ldpi/btn_check_buttonless_on.png b/core/res/res/drawable-ldpi/btn_check_buttonless_on.png Binary files differnew file mode 100644 index 000000000000..4d0ab2a764b7 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_buttonless_on.png diff --git a/core/res/res/drawable-ldpi/btn_check_label_background.9.png b/core/res/res/drawable-ldpi/btn_check_label_background.9.png Binary files differnew file mode 100644 index 000000000000..5b083674751a --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_label_background.9.png diff --git a/core/res/res/drawable-ldpi/btn_check_off.png b/core/res/res/drawable-ldpi/btn_check_off.png Binary files differnew file mode 100644 index 000000000000..f333117d4ee6 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_off.png diff --git a/core/res/res/drawable-ldpi/btn_check_off_disable.png b/core/res/res/drawable-ldpi/btn_check_off_disable.png Binary files differnew file mode 100644 index 000000000000..c4d7cd9499b5 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_off_disable.png diff --git a/core/res/res/drawable-ldpi/btn_check_off_disable_focused.png b/core/res/res/drawable-ldpi/btn_check_off_disable_focused.png Binary files differnew file mode 100644 index 000000000000..2bc5899b2859 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_off_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_check_off_pressed.png b/core/res/res/drawable-ldpi/btn_check_off_pressed.png Binary files differnew file mode 100644 index 000000000000..fe77b0850d69 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_off_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_check_off_selected.png b/core/res/res/drawable-ldpi/btn_check_off_selected.png Binary files differnew file mode 100644 index 000000000000..58542c446b21 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_off_selected.png diff --git a/core/res/res/drawable-ldpi/btn_check_on.png b/core/res/res/drawable-ldpi/btn_check_on.png Binary files differnew file mode 100644 index 000000000000..f4d777a6eabe --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_on.png diff --git a/core/res/res/drawable-ldpi/btn_check_on_disable.png b/core/res/res/drawable-ldpi/btn_check_on_disable.png Binary files differnew file mode 100644 index 000000000000..57513caddc21 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_on_disable.png diff --git a/core/res/res/drawable-ldpi/btn_check_on_disable_focused.png b/core/res/res/drawable-ldpi/btn_check_on_disable_focused.png Binary files differnew file mode 100644 index 000000000000..798835e55ec2 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_on_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_check_on_pressed.png b/core/res/res/drawable-ldpi/btn_check_on_pressed.png Binary files differnew file mode 100644 index 000000000000..0f00d17b407b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_on_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_check_on_selected.png b/core/res/res/drawable-ldpi/btn_check_on_selected.png Binary files differnew file mode 100644 index 000000000000..51b356608e35 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_check_on_selected.png diff --git a/core/res/res/drawable-ldpi/btn_circle_disable.png b/core/res/res/drawable-ldpi/btn_circle_disable.png Binary files differnew file mode 100644 index 000000000000..87a51c566445 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_circle_disable.png diff --git a/core/res/res/drawable-ldpi/btn_circle_disable_focused.png b/core/res/res/drawable-ldpi/btn_circle_disable_focused.png Binary files differnew file mode 100644 index 000000000000..cc28e3b4abba --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_circle_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_circle_normal.png b/core/res/res/drawable-ldpi/btn_circle_normal.png Binary files differnew file mode 100644 index 000000000000..b25ad81c08a1 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_circle_normal.png diff --git a/core/res/res/drawable-ldpi/btn_circle_pressed.png b/core/res/res/drawable-ldpi/btn_circle_pressed.png Binary files differnew file mode 100644 index 000000000000..abeedadce718 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_circle_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_circle_selected.png b/core/res/res/drawable-ldpi/btn_circle_selected.png Binary files differnew file mode 100644 index 000000000000..e3e8d1315f32 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_circle_selected.png diff --git a/core/res/res/drawable-ldpi/btn_close_normal.png b/core/res/res/drawable-ldpi/btn_close_normal.png Binary files differnew file mode 100644 index 000000000000..e4de0885a8f8 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_close_normal.png diff --git a/core/res/res/drawable-ldpi/btn_close_pressed.png b/core/res/res/drawable-ldpi/btn_close_pressed.png Binary files differnew file mode 100644 index 000000000000..5d946bd34046 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_close_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_close_selected.png b/core/res/res/drawable-ldpi/btn_close_selected.png Binary files differnew file mode 100644 index 000000000000..c1ee5a8942b2 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_close_selected.png diff --git a/core/res/res/drawable-ldpi/btn_code_lock_default.png b/core/res/res/drawable-ldpi/btn_code_lock_default.png Binary files differnew file mode 100644 index 000000000000..149da9bff119 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_code_lock_default.png diff --git a/core/res/res/drawable-ldpi/btn_code_lock_touched.png b/core/res/res/drawable-ldpi/btn_code_lock_touched.png Binary files differnew file mode 100644 index 000000000000..ad9a313b0314 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_code_lock_touched.png diff --git a/core/res/res/drawable-ldpi/btn_default_normal.9.png b/core/res/res/drawable-ldpi/btn_default_normal.9.png Binary files differnew file mode 100644 index 000000000000..198da17c9e45 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_normal_disable.9.png b/core/res/res/drawable-ldpi/btn_default_normal_disable.9.png Binary files differnew file mode 100644 index 000000000000..2e61b5095dec --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_normal_disable.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_normal_disable_focused.9.png b/core/res/res/drawable-ldpi/btn_default_normal_disable_focused.9.png Binary files differnew file mode 100644 index 000000000000..9fab12ef7fb0 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_normal_disable_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_pressed.9.png b/core/res/res/drawable-ldpi/btn_default_pressed.9.png Binary files differnew file mode 100644 index 000000000000..f5a21b21891e --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_selected.9.png b/core/res/res/drawable-ldpi/btn_default_selected.9.png Binary files differnew file mode 100644 index 000000000000..a09da0072d97 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_normal.9.png b/core/res/res/drawable-ldpi/btn_default_small_normal.9.png Binary files differnew file mode 100644 index 000000000000..4e69058ff8c0 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_small_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_normal_disable.9.png b/core/res/res/drawable-ldpi/btn_default_small_normal_disable.9.png Binary files differnew file mode 100644 index 000000000000..64fce6573929 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_small_normal_disable.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_normal_disable_focused.9.png b/core/res/res/drawable-ldpi/btn_default_small_normal_disable_focused.9.png Binary files differnew file mode 100644 index 000000000000..528b5e1cd5fe --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_small_normal_disable_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_pressed.9.png b/core/res/res/drawable-ldpi/btn_default_small_pressed.9.png Binary files differnew file mode 100644 index 000000000000..bf701280061b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_small_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_small_selected.9.png b/core/res/res/drawable-ldpi/btn_default_small_selected.9.png Binary files differnew file mode 100644 index 000000000000..71938d07bbea --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_small_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_default_transparent_normal.9.png b/core/res/res/drawable-ldpi/btn_default_transparent_normal.9.png Binary files differnew file mode 100644 index 000000000000..2c7249e42194 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_default_transparent_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_dialog_disable.png b/core/res/res/drawable-ldpi/btn_dialog_disable.png Binary files differnew file mode 100644 index 000000000000..82d13f28f1c7 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_dialog_disable.png diff --git a/core/res/res/drawable-ldpi/btn_dialog_normal.png b/core/res/res/drawable-ldpi/btn_dialog_normal.png Binary files differnew file mode 100644 index 000000000000..e4de0885a8f8 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_dialog_normal.png diff --git a/core/res/res/drawable-ldpi/btn_dialog_pressed.png b/core/res/res/drawable-ldpi/btn_dialog_pressed.png Binary files differnew file mode 100644 index 000000000000..557c13a9ef36 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_dialog_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_dialog_selected.png b/core/res/res/drawable-ldpi/btn_dialog_selected.png Binary files differnew file mode 100644 index 000000000000..f63ce276b935 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_dialog_selected.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_disabled.9.png b/core/res/res/drawable-ldpi/btn_dropdown_disabled.9.png Binary files differnew file mode 100644 index 000000000000..27cb8f5683cb --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_dropdown_disabled.9.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_disabled_focused.9.png b/core/res/res/drawable-ldpi/btn_dropdown_disabled_focused.9.png Binary files differnew file mode 100644 index 000000000000..a0231c5a043d --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_dropdown_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_normal.9.png b/core/res/res/drawable-ldpi/btn_dropdown_normal.9.png Binary files differnew file mode 100644 index 000000000000..b23e10ffa70e --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_dropdown_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_pressed.9.png b/core/res/res/drawable-ldpi/btn_dropdown_pressed.9.png Binary files differnew file mode 100644 index 000000000000..c3c08e4c9dee --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_dropdown_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_dropdown_selected.9.png b/core/res/res/drawable-ldpi/btn_dropdown_selected.9.png Binary files differnew file mode 100644 index 000000000000..2660e4308638 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_dropdown_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_erase_default.9.png b/core/res/res/drawable-ldpi/btn_erase_default.9.png Binary files differnew file mode 100644 index 000000000000..dc592ca57f4e --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_erase_default.9.png diff --git a/core/res/res/drawable-ldpi/btn_erase_pressed.9.png b/core/res/res/drawable-ldpi/btn_erase_pressed.9.png Binary files differnew file mode 100644 index 000000000000..48c0570a7fda --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_erase_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_erase_selected.9.png b/core/res/res/drawable-ldpi/btn_erase_selected.9.png Binary files differnew file mode 100644 index 000000000000..51f7b86b4b95 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_erase_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_global_search_normal.9.png b/core/res/res/drawable-ldpi/btn_global_search_normal.9.png Binary files differnew file mode 100644 index 000000000000..60bd3ceb92e5 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_global_search_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal.9.png Binary files differnew file mode 100644 index 000000000000..8cf50b8a1ee8 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_off.9.png Binary files differnew file mode 100644 index 000000000000..d853bf183ad9 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_on.9.png Binary files differnew file mode 100644 index 000000000000..f54e948837e9 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_normal_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed.9.png Binary files differnew file mode 100644 index 000000000000..ad7c95130706 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_off.9.png Binary files differnew file mode 100644 index 000000000000..1a075d297f3b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_on.9.png Binary files differnew file mode 100644 index 000000000000..5933f614a207 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_fulltrans_pressed_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_normal.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_normal.9.png Binary files differnew file mode 100644 index 000000000000..69db65f2f18e --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_normal_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_normal_off.9.png Binary files differnew file mode 100644 index 000000000000..37c5fedbe2ba --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_normal_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_normal_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_normal_on.9.png Binary files differnew file mode 100644 index 000000000000..019e6f78c150 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_normal_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_pressed.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed.9.png Binary files differnew file mode 100644 index 000000000000..d3827f0328ef --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_off.9.png Binary files differnew file mode 100644 index 000000000000..2bef004963ad --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_on.9.png Binary files differnew file mode 100644 index 000000000000..25daabeed0a6 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_pressed_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal.9.png Binary files differnew file mode 100644 index 000000000000..9d026c4d86dc --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_off.9.png Binary files differnew file mode 100644 index 000000000000..6ededbec1912 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_on.9.png Binary files differnew file mode 100644 index 000000000000..987014f8a72b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_normal_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed.9.png Binary files differnew file mode 100644 index 000000000000..d19a0fcc18e1 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_off.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_off.9.png Binary files differnew file mode 100644 index 000000000000..978ff4c32485 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_on.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_on.9.png Binary files differnew file mode 100644 index 000000000000..8355c7d4f595 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_pressed_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_keyboard_key_trans_selected.9.png b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_selected.9.png Binary files differnew file mode 100644 index 000000000000..8afb90823c17 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_keyboard_key_trans_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player.9.png b/core/res/res/drawable-ldpi/btn_media_player.9.png Binary files differnew file mode 100644 index 000000000000..7096dbcb7e73 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_media_player.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player_disabled.9.png b/core/res/res/drawable-ldpi/btn_media_player_disabled.9.png Binary files differnew file mode 100644 index 000000000000..83b1059a575e --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_media_player_disabled.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player_disabled_selected.9.png b/core/res/res/drawable-ldpi/btn_media_player_disabled_selected.9.png Binary files differnew file mode 100644 index 000000000000..f55ac211f226 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_media_player_disabled_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player_pressed.9.png b/core/res/res/drawable-ldpi/btn_media_player_pressed.9.png Binary files differnew file mode 100644 index 000000000000..de58ee21878d --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_media_player_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_media_player_selected.9.png b/core/res/res/drawable-ldpi/btn_media_player_selected.9.png Binary files differnew file mode 100644 index 000000000000..544358033511 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_media_player_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_minus_default.png b/core/res/res/drawable-ldpi/btn_minus_default.png Binary files differnew file mode 100644 index 000000000000..19c66e062fdf --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_minus_default.png diff --git a/core/res/res/drawable-ldpi/btn_minus_disable.png b/core/res/res/drawable-ldpi/btn_minus_disable.png Binary files differnew file mode 100644 index 000000000000..7b91ea6bcade --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_minus_disable.png diff --git a/core/res/res/drawable-ldpi/btn_minus_disable_focused.png b/core/res/res/drawable-ldpi/btn_minus_disable_focused.png Binary files differnew file mode 100644 index 000000000000..a347e3417d4f --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_minus_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_minus_pressed.png b/core/res/res/drawable-ldpi/btn_minus_pressed.png Binary files differnew file mode 100644 index 000000000000..aaa974612e39 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_minus_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_minus_selected.png b/core/res/res/drawable-ldpi/btn_minus_selected.png Binary files differnew file mode 100644 index 000000000000..29c6962697a4 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_minus_selected.png diff --git a/core/res/res/drawable-ldpi/btn_plus_default.png b/core/res/res/drawable-ldpi/btn_plus_default.png Binary files differnew file mode 100644 index 000000000000..8a5c600b709f --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_plus_default.png diff --git a/core/res/res/drawable-ldpi/btn_plus_disable.png b/core/res/res/drawable-ldpi/btn_plus_disable.png Binary files differnew file mode 100644 index 000000000000..1903ffa53a6b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_plus_disable.png diff --git a/core/res/res/drawable-ldpi/btn_plus_disable_focused.png b/core/res/res/drawable-ldpi/btn_plus_disable_focused.png Binary files differnew file mode 100644 index 000000000000..92f228a66efb --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_plus_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_plus_pressed.png b/core/res/res/drawable-ldpi/btn_plus_pressed.png Binary files differnew file mode 100644 index 000000000000..28f4e0282b14 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_plus_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_plus_selected.png b/core/res/res/drawable-ldpi/btn_plus_selected.png Binary files differnew file mode 100644 index 000000000000..c6fab190caa3 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_plus_selected.png diff --git a/core/res/res/drawable-ldpi/btn_radio_label_background.9.png b/core/res/res/drawable-ldpi/btn_radio_label_background.9.png Binary files differnew file mode 100644 index 000000000000..d04c41fbd144 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_radio_label_background.9.png diff --git a/core/res/res/drawable-ldpi/btn_radio_off.png b/core/res/res/drawable-ldpi/btn_radio_off.png Binary files differnew file mode 100644 index 000000000000..6df3b0d7e9ff --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_radio_off.png diff --git a/core/res/res/drawable-ldpi/btn_radio_off_pressed.png b/core/res/res/drawable-ldpi/btn_radio_off_pressed.png Binary files differnew file mode 100644 index 000000000000..4848ff05cb83 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_radio_off_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_radio_off_selected.png b/core/res/res/drawable-ldpi/btn_radio_off_selected.png Binary files differnew file mode 100644 index 000000000000..9336722405e1 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_radio_off_selected.png diff --git a/core/res/res/drawable-ldpi/btn_radio_on.png b/core/res/res/drawable-ldpi/btn_radio_on.png Binary files differnew file mode 100644 index 000000000000..65e5791de18a --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_radio_on.png diff --git a/core/res/res/drawable-ldpi/btn_radio_on_pressed.png b/core/res/res/drawable-ldpi/btn_radio_on_pressed.png Binary files differnew file mode 100644 index 000000000000..4856c32456a3 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_radio_on_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_radio_on_selected.png b/core/res/res/drawable-ldpi/btn_radio_on_selected.png Binary files differnew file mode 100644 index 000000000000..8b19dc79ac8e --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_radio_on_selected.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_off_normal.png b/core/res/res/drawable-ldpi/btn_rating_star_off_normal.png Binary files differnew file mode 100644 index 000000000000..5967bd36bf78 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_rating_star_off_normal.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_off_pressed.png b/core/res/res/drawable-ldpi/btn_rating_star_off_pressed.png Binary files differnew file mode 100644 index 000000000000..209e6a4a41fd --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_rating_star_off_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_off_selected.png b/core/res/res/drawable-ldpi/btn_rating_star_off_selected.png Binary files differnew file mode 100644 index 000000000000..c095f7fb28d8 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_rating_star_off_selected.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_on_normal.png b/core/res/res/drawable-ldpi/btn_rating_star_on_normal.png Binary files differnew file mode 100644 index 000000000000..89d2612917f6 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_rating_star_on_normal.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_on_pressed.png b/core/res/res/drawable-ldpi/btn_rating_star_on_pressed.png Binary files differnew file mode 100644 index 000000000000..6386eaaf683f --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_rating_star_on_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_rating_star_on_selected.png b/core/res/res/drawable-ldpi/btn_rating_star_on_selected.png Binary files differnew file mode 100644 index 000000000000..e1edf4eb234b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_rating_star_on_selected.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_default.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_default.9.png Binary files differnew file mode 100644 index 000000000000..35111b7fc26d --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_search_dialog_default.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_pressed.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_pressed.9.png Binary files differnew file mode 100644 index 000000000000..8ca4c659ebd6 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_search_dialog_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_selected.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_selected.9.png Binary files differnew file mode 100644 index 000000000000..0bee0b721f4e --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_search_dialog_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_voice_default.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_voice_default.9.png Binary files differnew file mode 100644 index 000000000000..f9e7298d3edb --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_search_dialog_voice_default.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_voice_pressed.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_voice_pressed.9.png Binary files differnew file mode 100644 index 000000000000..a130f653c06b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_search_dialog_voice_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_search_dialog_voice_selected.9.png b/core/res/res/drawable-ldpi/btn_search_dialog_voice_selected.9.png Binary files differnew file mode 100644 index 000000000000..c055bfefdab0 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_search_dialog_voice_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_disabled.png b/core/res/res/drawable-ldpi/btn_square_overlay_disabled.png Binary files differnew file mode 100644 index 000000000000..3b60946c7f83 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_square_overlay_disabled.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_disabled_focused.png b/core/res/res/drawable-ldpi/btn_square_overlay_disabled_focused.png Binary files differnew file mode 100644 index 000000000000..a36a9dd8cd7b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_square_overlay_disabled_focused.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_normal.png b/core/res/res/drawable-ldpi/btn_square_overlay_normal.png Binary files differnew file mode 100644 index 000000000000..4537623df07b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_square_overlay_normal.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_pressed.png b/core/res/res/drawable-ldpi/btn_square_overlay_pressed.png Binary files differnew file mode 100644 index 000000000000..62f224632fff --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_square_overlay_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_square_overlay_selected.png b/core/res/res/drawable-ldpi/btn_square_overlay_selected.png Binary files differnew file mode 100644 index 000000000000..264d3fac0c0a --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_square_overlay_selected.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off.png b/core/res/res/drawable-ldpi/btn_star_big_off.png Binary files differnew file mode 100644 index 000000000000..f0f1eb845a91 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_off.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off_disable.png b/core/res/res/drawable-ldpi/btn_star_big_off_disable.png Binary files differnew file mode 100644 index 000000000000..c6f2e20aece6 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_off_disable.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off_disable_focused.png b/core/res/res/drawable-ldpi/btn_star_big_off_disable_focused.png Binary files differnew file mode 100644 index 000000000000..228a84e3aff7 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_off_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off_pressed.png b/core/res/res/drawable-ldpi/btn_star_big_off_pressed.png Binary files differnew file mode 100644 index 000000000000..041f81a018ea --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_off_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_off_selected.png b/core/res/res/drawable-ldpi/btn_star_big_off_selected.png Binary files differnew file mode 100644 index 000000000000..adc8151dd5b1 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_off_selected.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on.png b/core/res/res/drawable-ldpi/btn_star_big_on.png Binary files differnew file mode 100644 index 000000000000..cf5ed353b8c6 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_on.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on_disable.png b/core/res/res/drawable-ldpi/btn_star_big_on_disable.png Binary files differnew file mode 100644 index 000000000000..53e6c65f5cc3 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_on_disable.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on_disable_focused.png b/core/res/res/drawable-ldpi/btn_star_big_on_disable_focused.png Binary files differnew file mode 100644 index 000000000000..8535013b4719 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_on_disable_focused.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on_pressed.png b/core/res/res/drawable-ldpi/btn_star_big_on_pressed.png Binary files differnew file mode 100644 index 000000000000..272787f35193 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_on_pressed.png diff --git a/core/res/res/drawable-ldpi/btn_star_big_on_selected.png b/core/res/res/drawable-ldpi/btn_star_big_on_selected.png Binary files differnew file mode 100644 index 000000000000..938d7431ffac --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_big_on_selected.png diff --git a/core/res/res/drawable-ldpi/btn_star_label_background.9.png b/core/res/res/drawable-ldpi/btn_star_label_background.9.png Binary files differnew file mode 100644 index 000000000000..3bc13c880f0d --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_star_label_background.9.png diff --git a/core/res/res/drawable-ldpi/btn_toggle_off.9.png b/core/res/res/drawable-ldpi/btn_toggle_off.9.png Binary files differnew file mode 100644 index 000000000000..d0245ffb05c7 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_toggle_off.9.png diff --git a/core/res/res/drawable-ldpi/btn_toggle_on.9.png b/core/res/res/drawable-ldpi/btn_toggle_on.9.png Binary files differnew file mode 100644 index 000000000000..0987759e98c0 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_toggle_on.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_disabled.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_disabled.9.png Binary files differnew file mode 100644 index 000000000000..0346abc46ed0 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_down_disabled.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_disabled_focused.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_disabled_focused.9.png Binary files differnew file mode 100644 index 000000000000..b03aa1b59146 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_down_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_normal.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_normal.9.png Binary files differnew file mode 100644 index 000000000000..aa2464c66c70 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_down_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_pressed.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_pressed.9.png Binary files differnew file mode 100644 index 000000000000..caa4d30c93fe --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_down_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_down_selected.9.png b/core/res/res/drawable-ldpi/btn_zoom_down_selected.9.png Binary files differnew file mode 100644 index 000000000000..b8147857f865 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_down_selected.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_page_normal.png b/core/res/res/drawable-ldpi/btn_zoom_page_normal.png Binary files differnew file mode 100644 index 000000000000..453bf406d920 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_page_normal.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_page_press.png b/core/res/res/drawable-ldpi/btn_zoom_page_press.png Binary files differnew file mode 100644 index 000000000000..82c29c81c3c1 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_page_press.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_disabled.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_disabled.9.png Binary files differnew file mode 100644 index 000000000000..e64f178967c3 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_up_disabled.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_disabled_focused.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_disabled_focused.9.png Binary files differnew file mode 100644 index 000000000000..3b21d0a1f5a7 --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_up_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_normal.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_normal.9.png Binary files differnew file mode 100644 index 000000000000..f4b56d587fdf --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_up_normal.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_pressed.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_pressed.9.png Binary files differnew file mode 100644 index 000000000000..45c668c8944b --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_up_pressed.9.png diff --git a/core/res/res/drawable-ldpi/btn_zoom_up_selected.9.png b/core/res/res/drawable-ldpi/btn_zoom_up_selected.9.png Binary files differnew file mode 100644 index 000000000000..1a07a52f85bb --- /dev/null +++ b/core/res/res/drawable-ldpi/btn_zoom_up_selected.9.png diff --git a/core/res/res/drawable-ldpi/button_onoff_indicator_off.png b/core/res/res/drawable-ldpi/button_onoff_indicator_off.png Binary files differnew file mode 100644 index 000000000000..79463564f7cf --- /dev/null +++ b/core/res/res/drawable-ldpi/button_onoff_indicator_off.png diff --git a/core/res/res/drawable-ldpi/button_onoff_indicator_on.png b/core/res/res/drawable-ldpi/button_onoff_indicator_on.png Binary files differnew file mode 100644 index 000000000000..6b817d57c0ce --- /dev/null +++ b/core/res/res/drawable-ldpi/button_onoff_indicator_on.png diff --git a/core/res/res/drawable-ldpi/call_contact.png b/core/res/res/drawable-ldpi/call_contact.png Binary files differnew file mode 100644 index 000000000000..bee1d20502b4 --- /dev/null +++ b/core/res/res/drawable-ldpi/call_contact.png diff --git a/core/res/res/drawable-ldpi/checkbox_off_background.png b/core/res/res/drawable-ldpi/checkbox_off_background.png Binary files differnew file mode 100644 index 000000000000..ab7798330e8e --- /dev/null +++ b/core/res/res/drawable-ldpi/checkbox_off_background.png diff --git a/core/res/res/drawable-ldpi/checkbox_on_background.png b/core/res/res/drawable-ldpi/checkbox_on_background.png Binary files differnew file mode 100644 index 000000000000..dd92a4cee4f0 --- /dev/null +++ b/core/res/res/drawable-ldpi/checkbox_on_background.png diff --git a/core/res/res/drawable-ldpi/clock_dial.png b/core/res/res/drawable-ldpi/clock_dial.png Binary files differnew file mode 100644 index 000000000000..cbc996185cc7 --- /dev/null +++ b/core/res/res/drawable-ldpi/clock_dial.png diff --git a/core/res/res/drawable-ldpi/clock_hand_hour.png b/core/res/res/drawable-ldpi/clock_hand_hour.png Binary files differnew file mode 100644 index 000000000000..3362fd0775d5 --- /dev/null +++ b/core/res/res/drawable-ldpi/clock_hand_hour.png diff --git a/core/res/res/drawable-ldpi/clock_hand_minute.png b/core/res/res/drawable-ldpi/clock_hand_minute.png Binary files differnew file mode 100644 index 000000000000..5c73d45ada5c --- /dev/null +++ b/core/res/res/drawable-ldpi/clock_hand_minute.png diff --git a/core/res/res/drawable-ldpi/code_lock_bottom.9.png b/core/res/res/drawable-ldpi/code_lock_bottom.9.png Binary files differnew file mode 100644 index 000000000000..dddac516df1c --- /dev/null +++ b/core/res/res/drawable-ldpi/code_lock_bottom.9.png diff --git a/core/res/res/drawable-ldpi/code_lock_left.9.png b/core/res/res/drawable-ldpi/code_lock_left.9.png Binary files differnew file mode 100644 index 000000000000..8834f74e06b9 --- /dev/null +++ b/core/res/res/drawable-ldpi/code_lock_left.9.png diff --git a/core/res/res/drawable-ldpi/code_lock_top.9.png b/core/res/res/drawable-ldpi/code_lock_top.9.png Binary files differnew file mode 100644 index 000000000000..2a5e3534e083 --- /dev/null +++ b/core/res/res/drawable-ldpi/code_lock_top.9.png diff --git a/core/res/res/drawable-ldpi/compass_arrow.png b/core/res/res/drawable-ldpi/compass_arrow.png Binary files differnew file mode 100644 index 000000000000..f59015c26ba8 --- /dev/null +++ b/core/res/res/drawable-ldpi/compass_arrow.png diff --git a/core/res/res/drawable-ldpi/compass_base.png b/core/res/res/drawable-ldpi/compass_base.png Binary files differnew file mode 100644 index 000000000000..a2eeb0758980 --- /dev/null +++ b/core/res/res/drawable-ldpi/compass_base.png diff --git a/core/res/res/drawable-ldpi/contact_header_bg.9.png b/core/res/res/drawable-ldpi/contact_header_bg.9.png Binary files differnew file mode 100644 index 000000000000..20f0cd329a6c --- /dev/null +++ b/core/res/res/drawable-ldpi/contact_header_bg.9.png diff --git a/core/res/res/drawable-ldpi/create_contact.png b/core/res/res/drawable-ldpi/create_contact.png Binary files differnew file mode 100644 index 000000000000..c920ef4a33ef --- /dev/null +++ b/core/res/res/drawable-ldpi/create_contact.png diff --git a/core/res/res/drawable-ldpi/dark_header.9.png b/core/res/res/drawable-ldpi/dark_header.9.png Binary files differnew file mode 100644 index 000000000000..88fa160e9d58 --- /dev/null +++ b/core/res/res/drawable-ldpi/dark_header.9.png diff --git a/core/res/res/drawable-ldpi/dialog_divider_horizontal_light.9.png b/core/res/res/drawable-ldpi/dialog_divider_horizontal_light.9.png Binary files differnew file mode 100644 index 000000000000..75a15341514d --- /dev/null +++ b/core/res/res/drawable-ldpi/dialog_divider_horizontal_light.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_bright.9.png b/core/res/res/drawable-ldpi/divider_horizontal_bright.9.png Binary files differnew file mode 100644 index 000000000000..24f2a3f1fa45 --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_horizontal_bright.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_bright_opaque.9.png b/core/res/res/drawable-ldpi/divider_horizontal_bright_opaque.9.png Binary files differnew file mode 100644 index 000000000000..24f2a3f1fa45 --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_horizontal_bright_opaque.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_dark.9.png b/core/res/res/drawable-ldpi/divider_horizontal_dark.9.png Binary files differnew file mode 100644 index 000000000000..470be26b7945 --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_horizontal_dark.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_dark_opaque.9.png b/core/res/res/drawable-ldpi/divider_horizontal_dark_opaque.9.png Binary files differnew file mode 100644 index 000000000000..24f2a3f1fa45 --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_horizontal_dark_opaque.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_dim_dark.9.png b/core/res/res/drawable-ldpi/divider_horizontal_dim_dark.9.png Binary files differnew file mode 100644 index 000000000000..e04b49d56352 --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_horizontal_dim_dark.9.png diff --git a/core/res/res/drawable-ldpi/divider_horizontal_textfield.9.png b/core/res/res/drawable-ldpi/divider_horizontal_textfield.9.png Binary files differnew file mode 100644 index 000000000000..547b180e3639 --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_horizontal_textfield.9.png diff --git a/core/res/res/drawable-ldpi/divider_vertical_bright.9.png b/core/res/res/drawable-ldpi/divider_vertical_bright.9.png Binary files differnew file mode 100644 index 000000000000..c85f7ab104db --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_vertical_bright.9.png diff --git a/core/res/res/drawable-ldpi/divider_vertical_bright_opaque.9.png b/core/res/res/drawable-ldpi/divider_vertical_bright_opaque.9.png Binary files differnew file mode 100644 index 000000000000..662e0330bb77 --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_vertical_bright_opaque.9.png diff --git a/core/res/res/drawable-ldpi/divider_vertical_dark.9.png b/core/res/res/drawable-ldpi/divider_vertical_dark.9.png Binary files differnew file mode 100644 index 000000000000..470be26b7945 --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_vertical_dark.9.png diff --git a/core/res/res/drawable-ldpi/divider_vertical_dark_opaque.9.png b/core/res/res/drawable-ldpi/divider_vertical_dark_opaque.9.png Binary files differnew file mode 100644 index 000000000000..94d2fda4a4e2 --- /dev/null +++ b/core/res/res/drawable-ldpi/divider_vertical_dark_opaque.9.png diff --git a/core/res/res/drawable-ldpi/editbox_background_focus_yellow.9.png b/core/res/res/drawable-ldpi/editbox_background_focus_yellow.9.png Binary files differnew file mode 100644 index 000000000000..f8d65bcc89bf --- /dev/null +++ b/core/res/res/drawable-ldpi/editbox_background_focus_yellow.9.png diff --git a/core/res/res/drawable-ldpi/editbox_background_normal.9.png b/core/res/res/drawable-ldpi/editbox_background_normal.9.png Binary files differnew file mode 100644 index 000000000000..f8fb178998f5 --- /dev/null +++ b/core/res/res/drawable-ldpi/editbox_background_normal.9.png diff --git a/core/res/res/drawable-ldpi/editbox_dropdown_background.9.png b/core/res/res/drawable-ldpi/editbox_dropdown_background.9.png Binary files differnew file mode 100644 index 000000000000..8717d3420913 --- /dev/null +++ b/core/res/res/drawable-ldpi/editbox_dropdown_background.9.png diff --git a/core/res/res/drawable-ldpi/editbox_dropdown_background_dark.9.png b/core/res/res/drawable-ldpi/editbox_dropdown_background_dark.9.png Binary files differnew file mode 100644 index 000000000000..18885fc87ea9 --- /dev/null +++ b/core/res/res/drawable-ldpi/editbox_dropdown_background_dark.9.png diff --git a/core/res/res/drawable-ldpi/emo_im_angel.png b/core/res/res/drawable-ldpi/emo_im_angel.png Binary files differnew file mode 100644 index 000000000000..eb74cb3ddd88 --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_angel.png diff --git a/core/res/res/drawable-ldpi/emo_im_cool.png b/core/res/res/drawable-ldpi/emo_im_cool.png Binary files differnew file mode 100644 index 000000000000..657de3bf7b8d --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_cool.png diff --git a/core/res/res/drawable-ldpi/emo_im_crying.png b/core/res/res/drawable-ldpi/emo_im_crying.png Binary files differnew file mode 100644 index 000000000000..292cf0c00afb --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_crying.png diff --git a/core/res/res/drawable-ldpi/emo_im_foot_in_mouth.png b/core/res/res/drawable-ldpi/emo_im_foot_in_mouth.png Binary files differnew file mode 100644 index 000000000000..b1d998358d80 --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_foot_in_mouth.png diff --git a/core/res/res/drawable-ldpi/emo_im_happy.png b/core/res/res/drawable-ldpi/emo_im_happy.png Binary files differnew file mode 100644 index 000000000000..b34a54baeb81 --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_happy.png diff --git a/core/res/res/drawable-ldpi/emo_im_kissing.png b/core/res/res/drawable-ldpi/emo_im_kissing.png Binary files differnew file mode 100644 index 000000000000..d8aaf1143466 --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_kissing.png diff --git a/core/res/res/drawable-ldpi/emo_im_laughing.png b/core/res/res/drawable-ldpi/emo_im_laughing.png Binary files differnew file mode 100644 index 000000000000..41ddb6fd721b --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_laughing.png diff --git a/core/res/res/drawable-ldpi/emo_im_lips_are_sealed.png b/core/res/res/drawable-ldpi/emo_im_lips_are_sealed.png Binary files differnew file mode 100644 index 000000000000..85d0c420b8f0 --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_lips_are_sealed.png diff --git a/core/res/res/drawable-ldpi/emo_im_money_mouth.png b/core/res/res/drawable-ldpi/emo_im_money_mouth.png Binary files differnew file mode 100644 index 000000000000..b04a56c1352c --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_money_mouth.png diff --git a/core/res/res/drawable-ldpi/emo_im_sad.png b/core/res/res/drawable-ldpi/emo_im_sad.png Binary files differnew file mode 100644 index 000000000000..e97823161108 --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_sad.png diff --git a/core/res/res/drawable-ldpi/emo_im_surprised.png b/core/res/res/drawable-ldpi/emo_im_surprised.png Binary files differnew file mode 100644 index 000000000000..6f9c8d91cbdc --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_surprised.png diff --git a/core/res/res/drawable-ldpi/emo_im_tongue_sticking_out.png b/core/res/res/drawable-ldpi/emo_im_tongue_sticking_out.png Binary files differnew file mode 100644 index 000000000000..c62447cb7dbf --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_tongue_sticking_out.png diff --git a/core/res/res/drawable-ldpi/emo_im_undecided.png b/core/res/res/drawable-ldpi/emo_im_undecided.png Binary files differnew file mode 100644 index 000000000000..27c4ca392f02 --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_undecided.png diff --git a/core/res/res/drawable-ldpi/emo_im_winking.png b/core/res/res/drawable-ldpi/emo_im_winking.png Binary files differnew file mode 100644 index 000000000000..97b180fb0e18 --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_winking.png diff --git a/core/res/res/drawable-ldpi/emo_im_wtf.png b/core/res/res/drawable-ldpi/emo_im_wtf.png Binary files differnew file mode 100644 index 000000000000..8d6a307d932f --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_wtf.png diff --git a/core/res/res/drawable-ldpi/emo_im_yelling.png b/core/res/res/drawable-ldpi/emo_im_yelling.png Binary files differnew file mode 100644 index 000000000000..ce74375b3ac0 --- /dev/null +++ b/core/res/res/drawable-ldpi/emo_im_yelling.png diff --git a/core/res/res/drawable-ldpi/expander_ic_maximized.9.png b/core/res/res/drawable-ldpi/expander_ic_maximized.9.png Binary files differnew file mode 100644 index 000000000000..732a6f55d766 --- /dev/null +++ b/core/res/res/drawable-ldpi/expander_ic_maximized.9.png diff --git a/core/res/res/drawable-ldpi/expander_ic_minimized.9.png b/core/res/res/drawable-ldpi/expander_ic_minimized.9.png Binary files differnew file mode 100644 index 000000000000..054e3a42f040 --- /dev/null +++ b/core/res/res/drawable-ldpi/expander_ic_minimized.9.png diff --git a/core/res/res/drawable-ldpi/focused_application_background_static.png b/core/res/res/drawable-ldpi/focused_application_background_static.png Binary files differnew file mode 100644 index 000000000000..8738badc566e --- /dev/null +++ b/core/res/res/drawable-ldpi/focused_application_background_static.png diff --git a/core/res/res/drawable-ldpi/frame_gallery_thumb.9.png b/core/res/res/drawable-ldpi/frame_gallery_thumb.9.png Binary files differnew file mode 100644 index 000000000000..d686b7768280 --- /dev/null +++ b/core/res/res/drawable-ldpi/frame_gallery_thumb.9.png diff --git a/core/res/res/drawable-ldpi/frame_gallery_thumb_pressed.9.png b/core/res/res/drawable-ldpi/frame_gallery_thumb_pressed.9.png Binary files differnew file mode 100644 index 000000000000..c33048a55b07 --- /dev/null +++ b/core/res/res/drawable-ldpi/frame_gallery_thumb_pressed.9.png diff --git a/core/res/res/drawable-ldpi/frame_gallery_thumb_selected.9.png b/core/res/res/drawable-ldpi/frame_gallery_thumb_selected.9.png Binary files differnew file mode 100644 index 000000000000..8c4adbc5d222 --- /dev/null +++ b/core/res/res/drawable-ldpi/frame_gallery_thumb_selected.9.png diff --git a/core/res/res/drawable-ldpi/gallery_selected_default.9.png b/core/res/res/drawable-ldpi/gallery_selected_default.9.png Binary files differnew file mode 100644 index 000000000000..3d55225be52d --- /dev/null +++ b/core/res/res/drawable-ldpi/gallery_selected_default.9.png diff --git a/core/res/res/drawable-ldpi/gallery_selected_focused.9.png b/core/res/res/drawable-ldpi/gallery_selected_focused.9.png Binary files differnew file mode 100644 index 000000000000..31aabc2a9f80 --- /dev/null +++ b/core/res/res/drawable-ldpi/gallery_selected_focused.9.png diff --git a/core/res/res/drawable-ldpi/gallery_selected_pressed.9.png b/core/res/res/drawable-ldpi/gallery_selected_pressed.9.png Binary files differnew file mode 100644 index 000000000000..d05a36f463a6 --- /dev/null +++ b/core/res/res/drawable-ldpi/gallery_selected_pressed.9.png diff --git a/core/res/res/drawable-ldpi/gallery_unselected_default.9.png b/core/res/res/drawable-ldpi/gallery_unselected_default.9.png Binary files differnew file mode 100644 index 000000000000..179c32c42068 --- /dev/null +++ b/core/res/res/drawable-ldpi/gallery_unselected_default.9.png diff --git a/core/res/res/drawable-ldpi/gallery_unselected_pressed.9.png b/core/res/res/drawable-ldpi/gallery_unselected_pressed.9.png Binary files differnew file mode 100644 index 000000000000..0e3f6521300b --- /dev/null +++ b/core/res/res/drawable-ldpi/gallery_unselected_pressed.9.png diff --git a/core/res/res/drawable-ldpi/grid_selector_background_focus.9.png b/core/res/res/drawable-ldpi/grid_selector_background_focus.9.png Binary files differnew file mode 100644 index 000000000000..87d47caa6540 --- /dev/null +++ b/core/res/res/drawable-ldpi/grid_selector_background_focus.9.png diff --git a/core/res/res/drawable-ldpi/grid_selector_background_pressed.9.png b/core/res/res/drawable-ldpi/grid_selector_background_pressed.9.png Binary files differnew file mode 100644 index 000000000000..f2cc50733884 --- /dev/null +++ b/core/res/res/drawable-ldpi/grid_selector_background_pressed.9.png diff --git a/core/res/res/drawable-ldpi/highlight_disabled.9.png b/core/res/res/drawable-ldpi/highlight_disabled.9.png Binary files differnew file mode 100644 index 000000000000..473bdf6f7f3b --- /dev/null +++ b/core/res/res/drawable-ldpi/highlight_disabled.9.png diff --git a/core/res/res/drawable-ldpi/highlight_pressed.9.png b/core/res/res/drawable-ldpi/highlight_pressed.9.png Binary files differnew file mode 100644 index 000000000000..0ebfbde54108 --- /dev/null +++ b/core/res/res/drawable-ldpi/highlight_pressed.9.png diff --git a/core/res/res/drawable-ldpi/highlight_selected.9.png b/core/res/res/drawable-ldpi/highlight_selected.9.png Binary files differnew file mode 100644 index 000000000000..a4df02755750 --- /dev/null +++ b/core/res/res/drawable-ldpi/highlight_selected.9.png diff --git a/core/res/res/drawable-ldpi/ic_aggregated.png b/core/res/res/drawable-ldpi/ic_aggregated.png Binary files differnew file mode 100644 index 000000000000..fdb2e90a86f8 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_aggregated.png diff --git a/core/res/res/drawable-ldpi/ic_btn_round_more_disabled.png b/core/res/res/drawable-ldpi/ic_btn_round_more_disabled.png Binary files differnew file mode 100644 index 000000000000..99c7a2f08ba7 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_btn_round_more_disabled.png diff --git a/core/res/res/drawable-ldpi/ic_btn_round_more_normal.png b/core/res/res/drawable-ldpi/ic_btn_round_more_normal.png Binary files differnew file mode 100644 index 000000000000..a8cb6d54e2c8 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_btn_round_more_normal.png diff --git a/core/res/res/drawable-ldpi/ic_btn_search.png b/core/res/res/drawable-ldpi/ic_btn_search.png Binary files differnew file mode 100644 index 000000000000..bdefbf5c67d8 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_btn_search.png diff --git a/core/res/res/drawable-ldpi/ic_btn_search_go.png b/core/res/res/drawable-ldpi/ic_btn_search_go.png Binary files differnew file mode 100644 index 000000000000..94e5555ec2a2 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_btn_search_go.png diff --git a/core/res/res/drawable-ldpi/ic_btn_speak_now.png b/core/res/res/drawable-ldpi/ic_btn_speak_now.png Binary files differnew file mode 100644 index 000000000000..106e8e686929 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_btn_speak_now.png diff --git a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_disabled.png b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_disabled.png Binary files differnew file mode 100644 index 000000000000..ef71e6c40616 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_disabled.png diff --git a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_normal.png b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_normal.png Binary files differnew file mode 100644 index 000000000000..fc1531cb8727 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_fit_page_normal.png diff --git a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_disabled.png b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_disabled.png Binary files differnew file mode 100644 index 000000000000..84fcf0aff112 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_disabled.png diff --git a/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_normal.png b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_normal.png Binary files differnew file mode 100644 index 000000000000..70fc81844fe2 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_btn_square_browser_zoom_page_overview_normal.png diff --git a/core/res/res/drawable-ldpi/ic_bullet_key_permission.png b/core/res/res/drawable-ldpi/ic_bullet_key_permission.png Binary files differnew file mode 100644 index 000000000000..016c0f0f4731 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_bullet_key_permission.png diff --git a/core/res/res/drawable-ldpi/ic_contact_picture.png b/core/res/res/drawable-ldpi/ic_contact_picture.png Binary files differnew file mode 100644 index 000000000000..a0444e4b7489 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_contact_picture.png diff --git a/core/res/res/drawable-ldpi/ic_contact_picture_2.png b/core/res/res/drawable-ldpi/ic_contact_picture_2.png Binary files differnew file mode 100644 index 000000000000..42e8d868e4ba --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_contact_picture_2.png diff --git a/core/res/res/drawable-ldpi/ic_contact_picture_3.png b/core/res/res/drawable-ldpi/ic_contact_picture_3.png Binary files differnew file mode 100644 index 000000000000..c9c0a65e8a41 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_contact_picture_3.png diff --git a/core/res/res/drawable-ldpi/ic_delete.png b/core/res/res/drawable-ldpi/ic_delete.png Binary files differnew file mode 100644 index 000000000000..a4cefa8c9489 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_delete.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_alert.png b/core/res/res/drawable-ldpi/ic_dialog_alert.png Binary files differnew file mode 100644 index 000000000000..6c3c624d283f --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_dialog_alert.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_dialer.png b/core/res/res/drawable-ldpi/ic_dialog_dialer.png Binary files differnew file mode 100644 index 000000000000..066efefe6c4b --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_dialog_dialer.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_email.png b/core/res/res/drawable-ldpi/ic_dialog_email.png Binary files differnew file mode 100644 index 000000000000..194222ec8afe --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_dialog_email.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_info.png b/core/res/res/drawable-ldpi/ic_dialog_info.png Binary files differnew file mode 100644 index 000000000000..a1dcc5ac4050 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_dialog_info.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_map.png b/core/res/res/drawable-ldpi/ic_dialog_map.png Binary files differnew file mode 100644 index 000000000000..9b04476c289c --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_dialog_map.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_time.png b/core/res/res/drawable-ldpi/ic_dialog_time.png Binary files differnew file mode 100644 index 000000000000..5b8722bb717c --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_dialog_time.png diff --git a/core/res/res/drawable-ldpi/ic_dialog_usb.png b/core/res/res/drawable-ldpi/ic_dialog_usb.png Binary files differnew file mode 100644 index 000000000000..eeef46e83607 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_dialog_usb.png diff --git a/core/res/res/drawable-ldpi/ic_emergency.png b/core/res/res/drawable-ldpi/ic_emergency.png Binary files differnew file mode 100644 index 000000000000..5c4ed5db8e17 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_emergency.png diff --git a/core/res/res/drawable-ldpi/ic_input_add.png b/core/res/res/drawable-ldpi/ic_input_add.png Binary files differnew file mode 100644 index 000000000000..04cc27a061a1 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_input_add.png diff --git a/core/res/res/drawable-ldpi/ic_input_delete.png b/core/res/res/drawable-ldpi/ic_input_delete.png Binary files differnew file mode 100644 index 000000000000..d7eff17b5bcd --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_input_delete.png diff --git a/core/res/res/drawable-ldpi/ic_input_get.png b/core/res/res/drawable-ldpi/ic_input_get.png Binary files differnew file mode 100644 index 000000000000..445299388325 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_input_get.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_answer.png b/core/res/res/drawable-ldpi/ic_jog_dial_answer.png Binary files differnew file mode 100644 index 000000000000..9c5800ad1f3e --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_jog_dial_answer.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_end.png b/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_end.png Binary files differnew file mode 100644 index 000000000000..117c6d84b516 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_end.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_hold.png b/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_hold.png Binary files differnew file mode 100644 index 000000000000..08280e3824b6 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_jog_dial_answer_and_hold.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_decline.png b/core/res/res/drawable-ldpi/ic_jog_dial_decline.png Binary files differnew file mode 100644 index 000000000000..7ccc1ca1a431 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_jog_dial_decline.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_sound_off.png b/core/res/res/drawable-ldpi/ic_jog_dial_sound_off.png Binary files differnew file mode 100644 index 000000000000..a4e3edf1c42a --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_jog_dial_sound_off.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_sound_on.png b/core/res/res/drawable-ldpi/ic_jog_dial_sound_on.png Binary files differnew file mode 100644 index 000000000000..f8190b56f498 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_jog_dial_sound_on.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_unlock.png b/core/res/res/drawable-ldpi/ic_jog_dial_unlock.png Binary files differnew file mode 100644 index 000000000000..16fa0db9942a --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_jog_dial_unlock.png diff --git a/core/res/res/drawable-ldpi/ic_jog_dial_vibrate_on.png b/core/res/res/drawable-ldpi/ic_jog_dial_vibrate_on.png Binary files differnew file mode 100644 index 000000000000..ac5a9b955caf --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_jog_dial_vibrate_on.png diff --git a/core/res/res/drawable-ldpi/ic_launcher_android.png b/core/res/res/drawable-ldpi/ic_launcher_android.png Binary files differnew file mode 100644 index 000000000000..628a8de9a0bb --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_launcher_android.png diff --git a/core/res/res/drawable-ldpi/ic_lock_airplane_mode.png b/core/res/res/drawable-ldpi/ic_lock_airplane_mode.png Binary files differnew file mode 100644 index 000000000000..65a101bec089 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_airplane_mode.png diff --git a/core/res/res/drawable-ldpi/ic_lock_airplane_mode_off.png b/core/res/res/drawable-ldpi/ic_lock_airplane_mode_off.png Binary files differnew file mode 100644 index 000000000000..11adeb83a7d0 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_airplane_mode_off.png diff --git a/core/res/res/drawable-ldpi/ic_lock_idle_alarm.png b/core/res/res/drawable-ldpi/ic_lock_idle_alarm.png Binary files differnew file mode 100644 index 000000000000..dc133c562f2e --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_idle_alarm.png diff --git a/core/res/res/drawable-ldpi/ic_lock_idle_charging.png b/core/res/res/drawable-ldpi/ic_lock_idle_charging.png Binary files differnew file mode 100644 index 000000000000..c943b67094b4 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_idle_charging.png diff --git a/core/res/res/drawable-ldpi/ic_lock_idle_lock.png b/core/res/res/drawable-ldpi/ic_lock_idle_lock.png Binary files differnew file mode 100644 index 000000000000..bc4adfd06410 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_idle_lock.png diff --git a/core/res/res/drawable-ldpi/ic_lock_idle_low_battery.png b/core/res/res/drawable-ldpi/ic_lock_idle_low_battery.png Binary files differnew file mode 100644 index 000000000000..df7cb2200ff9 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_idle_low_battery.png diff --git a/core/res/res/drawable-ldpi/ic_lock_lock.png b/core/res/res/drawable-ldpi/ic_lock_lock.png Binary files differnew file mode 100644 index 000000000000..bde40f6dc5cc --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_lock.png diff --git a/core/res/res/drawable-ldpi/ic_lock_power_off.png b/core/res/res/drawable-ldpi/ic_lock_power_off.png Binary files differnew file mode 100644 index 000000000000..074d6d09c255 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_power_off.png diff --git a/core/res/res/drawable-ldpi/ic_lock_ringer_off.png b/core/res/res/drawable-ldpi/ic_lock_ringer_off.png Binary files differnew file mode 100644 index 000000000000..50ff3de7041c --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_ringer_off.png diff --git a/core/res/res/drawable-ldpi/ic_lock_ringer_on.png b/core/res/res/drawable-ldpi/ic_lock_ringer_on.png Binary files differnew file mode 100644 index 000000000000..723272836c6f --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_ringer_on.png diff --git a/core/res/res/drawable-ldpi/ic_lock_silent_mode.png b/core/res/res/drawable-ldpi/ic_lock_silent_mode.png Binary files differnew file mode 100644 index 000000000000..8004f9d9534d --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_silent_mode.png diff --git a/core/res/res/drawable-ldpi/ic_lock_silent_mode_off.png b/core/res/res/drawable-ldpi/ic_lock_silent_mode_off.png Binary files differnew file mode 100644 index 000000000000..81b7a8d5940b --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_silent_mode_off.png diff --git a/core/res/res/drawable-ldpi/ic_lock_silent_mode_vibrate.png b/core/res/res/drawable-ldpi/ic_lock_silent_mode_vibrate.png Binary files differnew file mode 100644 index 000000000000..5f54f6f98760 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_lock_silent_mode_vibrate.png diff --git a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position.png b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position.png Binary files differnew file mode 100644 index 000000000000..697b065625df --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position.png diff --git a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim1.png b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim1.png Binary files differnew file mode 100644 index 000000000000..15a8a085f778 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim1.png diff --git a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim2.png b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim2.png Binary files differnew file mode 100644 index 000000000000..f8b8de233796 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim2.png diff --git a/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim3.png b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim3.png Binary files differnew file mode 100644 index 000000000000..02f754704d35 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_maps_indicator_current_position_anim3.png diff --git a/core/res/res/drawable-ldpi/ic_media_ff.png b/core/res/res/drawable-ldpi/ic_media_ff.png Binary files differnew file mode 100644 index 000000000000..1b4d9dbef99a --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_media_ff.png diff --git a/core/res/res/drawable-ldpi/ic_media_next.png b/core/res/res/drawable-ldpi/ic_media_next.png Binary files differnew file mode 100644 index 000000000000..99927fd27b90 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_media_next.png diff --git a/core/res/res/drawable-ldpi/ic_media_pause.png b/core/res/res/drawable-ldpi/ic_media_pause.png Binary files differnew file mode 100644 index 000000000000..3b98d66688d3 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_media_pause.png diff --git a/core/res/res/drawable-ldpi/ic_media_play.png b/core/res/res/drawable-ldpi/ic_media_play.png Binary files differnew file mode 100644 index 000000000000..e7c19724bbcb --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_media_play.png diff --git a/core/res/res/drawable-ldpi/ic_media_previous.png b/core/res/res/drawable-ldpi/ic_media_previous.png Binary files differnew file mode 100644 index 000000000000..df043228d017 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_media_previous.png diff --git a/core/res/res/drawable-ldpi/ic_media_rew.png b/core/res/res/drawable-ldpi/ic_media_rew.png Binary files differnew file mode 100644 index 000000000000..28843f9fb06d --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_media_rew.png diff --git a/core/res/res/drawable-ldpi/ic_menu_account_list.png b/core/res/res/drawable-ldpi/ic_menu_account_list.png Binary files differnew file mode 100644 index 000000000000..04ededd38710 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_account_list.png diff --git a/core/res/res/drawable-ldpi/ic_menu_add.png b/core/res/res/drawable-ldpi/ic_menu_add.png Binary files differnew file mode 100644 index 000000000000..89620af8c03d --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_add.png diff --git a/core/res/res/drawable-ldpi/ic_menu_agenda.png b/core/res/res/drawable-ldpi/ic_menu_agenda.png Binary files differnew file mode 100644 index 000000000000..9abcc68507af --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_agenda.png diff --git a/core/res/res/drawable-ldpi/ic_menu_allfriends.png b/core/res/res/drawable-ldpi/ic_menu_allfriends.png Binary files differnew file mode 100644 index 000000000000..462d078b30ee --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_allfriends.png diff --git a/core/res/res/drawable-ldpi/ic_menu_always_landscape_portrait.png b/core/res/res/drawable-ldpi/ic_menu_always_landscape_portrait.png Binary files differnew file mode 100644 index 000000000000..2c779ca8e466 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_always_landscape_portrait.png diff --git a/core/res/res/drawable-ldpi/ic_menu_archive.png b/core/res/res/drawable-ldpi/ic_menu_archive.png Binary files differnew file mode 100644 index 000000000000..719ecd8582b8 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_archive.png diff --git a/core/res/res/drawable-ldpi/ic_menu_attachment.png b/core/res/res/drawable-ldpi/ic_menu_attachment.png Binary files differnew file mode 100644 index 000000000000..8fc2211f0ef3 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_attachment.png diff --git a/core/res/res/drawable-ldpi/ic_menu_back.png b/core/res/res/drawable-ldpi/ic_menu_back.png Binary files differnew file mode 100644 index 000000000000..71eb533a7aa7 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_back.png diff --git a/core/res/res/drawable-ldpi/ic_menu_block.png b/core/res/res/drawable-ldpi/ic_menu_block.png Binary files differnew file mode 100644 index 000000000000..c8d80cd10cc2 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_block.png diff --git a/core/res/res/drawable-ldpi/ic_menu_blocked_user.png b/core/res/res/drawable-ldpi/ic_menu_blocked_user.png Binary files differnew file mode 100644 index 000000000000..c6407b58da63 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_blocked_user.png diff --git a/core/res/res/drawable-ldpi/ic_menu_call.png b/core/res/res/drawable-ldpi/ic_menu_call.png Binary files differnew file mode 100644 index 000000000000..39d4b106faaf --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_call.png diff --git a/core/res/res/drawable-ldpi/ic_menu_camera.png b/core/res/res/drawable-ldpi/ic_menu_camera.png Binary files differnew file mode 100644 index 000000000000..4d3a6a5d4ce7 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_camera.png diff --git a/core/res/res/drawable-ldpi/ic_menu_cc.png b/core/res/res/drawable-ldpi/ic_menu_cc.png Binary files differnew file mode 100644 index 000000000000..d90d70dfa21c --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_cc.png diff --git a/core/res/res/drawable-ldpi/ic_menu_chat_dashboard.png b/core/res/res/drawable-ldpi/ic_menu_chat_dashboard.png Binary files differnew file mode 100644 index 000000000000..c417faab1b19 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_chat_dashboard.png diff --git a/core/res/res/drawable-ldpi/ic_menu_clear_playlist.png b/core/res/res/drawable-ldpi/ic_menu_clear_playlist.png Binary files differnew file mode 100644 index 000000000000..f3e6b51c0d7f --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_clear_playlist.png diff --git a/core/res/res/drawable-ldpi/ic_menu_close_clear_cancel.png b/core/res/res/drawable-ldpi/ic_menu_close_clear_cancel.png Binary files differnew file mode 100644 index 000000000000..760b9254d7a0 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_close_clear_cancel.png diff --git a/core/res/res/drawable-ldpi/ic_menu_compass.png b/core/res/res/drawable-ldpi/ic_menu_compass.png Binary files differnew file mode 100644 index 000000000000..bf1724b6c734 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_compass.png diff --git a/core/res/res/drawable-ldpi/ic_menu_compose.png b/core/res/res/drawable-ldpi/ic_menu_compose.png Binary files differnew file mode 100644 index 000000000000..1e6767b37582 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_compose.png diff --git a/core/res/res/drawable-ldpi/ic_menu_crop.png b/core/res/res/drawable-ldpi/ic_menu_crop.png Binary files differnew file mode 100644 index 000000000000..97c91822143b --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_crop.png diff --git a/core/res/res/drawable-ldpi/ic_menu_day.png b/core/res/res/drawable-ldpi/ic_menu_day.png Binary files differnew file mode 100644 index 000000000000..f0d661be55bf --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_day.png diff --git a/core/res/res/drawable-ldpi/ic_menu_delete.png b/core/res/res/drawable-ldpi/ic_menu_delete.png Binary files differnew file mode 100644 index 000000000000..dbad3ddc8457 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_delete.png diff --git a/core/res/res/drawable-ldpi/ic_menu_directions.png b/core/res/res/drawable-ldpi/ic_menu_directions.png Binary files differnew file mode 100644 index 000000000000..5d89d4667a5c --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_directions.png diff --git a/core/res/res/drawable-ldpi/ic_menu_edit.png b/core/res/res/drawable-ldpi/ic_menu_edit.png Binary files differnew file mode 100644 index 000000000000..9bb66e350220 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_edit.png diff --git a/core/res/res/drawable-ldpi/ic_menu_emoticons.png b/core/res/res/drawable-ldpi/ic_menu_emoticons.png Binary files differnew file mode 100644 index 000000000000..a97db875ff2b --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_emoticons.png diff --git a/core/res/res/drawable-ldpi/ic_menu_end_conversation.png b/core/res/res/drawable-ldpi/ic_menu_end_conversation.png Binary files differnew file mode 100644 index 000000000000..dd2005ef51b4 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_end_conversation.png diff --git a/core/res/res/drawable-ldpi/ic_menu_forward.png b/core/res/res/drawable-ldpi/ic_menu_forward.png Binary files differnew file mode 100644 index 000000000000..554cfb7b79cb --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_forward.png diff --git a/core/res/res/drawable-ldpi/ic_menu_friendslist.png b/core/res/res/drawable-ldpi/ic_menu_friendslist.png Binary files differnew file mode 100644 index 000000000000..62950da4fc83 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_friendslist.png diff --git a/core/res/res/drawable-ldpi/ic_menu_gallery.png b/core/res/res/drawable-ldpi/ic_menu_gallery.png Binary files differnew file mode 100644 index 000000000000..d57b284c4d58 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_gallery.png diff --git a/core/res/res/drawable-ldpi/ic_menu_goto.png b/core/res/res/drawable-ldpi/ic_menu_goto.png Binary files differnew file mode 100644 index 000000000000..d15ea3de52c3 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_goto.png diff --git a/core/res/res/drawable-ldpi/ic_menu_help.png b/core/res/res/drawable-ldpi/ic_menu_help.png Binary files differnew file mode 100644 index 000000000000..f93a4e6402c2 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_help.png diff --git a/core/res/res/drawable-ldpi/ic_menu_home.png b/core/res/res/drawable-ldpi/ic_menu_home.png Binary files differnew file mode 100644 index 000000000000..fd6f453f28cf --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_home.png diff --git a/core/res/res/drawable-ldpi/ic_menu_info_details.png b/core/res/res/drawable-ldpi/ic_menu_info_details.png Binary files differnew file mode 100644 index 000000000000..55c57d5c544b --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_info_details.png diff --git a/core/res/res/drawable-ldpi/ic_menu_invite.png b/core/res/res/drawable-ldpi/ic_menu_invite.png Binary files differnew file mode 100644 index 000000000000..16de8fe1116c --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_invite.png diff --git a/core/res/res/drawable-ldpi/ic_menu_login.png b/core/res/res/drawable-ldpi/ic_menu_login.png Binary files differnew file mode 100644 index 000000000000..d4181de531b0 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_login.png diff --git a/core/res/res/drawable-ldpi/ic_menu_manage.png b/core/res/res/drawable-ldpi/ic_menu_manage.png Binary files differnew file mode 100644 index 000000000000..b137b8c6e4f4 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_manage.png diff --git a/core/res/res/drawable-ldpi/ic_menu_mapmode.png b/core/res/res/drawable-ldpi/ic_menu_mapmode.png Binary files differnew file mode 100644 index 000000000000..88510059bb55 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_mapmode.png diff --git a/core/res/res/drawable-ldpi/ic_menu_mark.png b/core/res/res/drawable-ldpi/ic_menu_mark.png Binary files differnew file mode 100644 index 000000000000..1d440272e24f --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_mark.png diff --git a/core/res/res/drawable-ldpi/ic_menu_month.png b/core/res/res/drawable-ldpi/ic_menu_month.png Binary files differnew file mode 100644 index 000000000000..a3462f6f7dc5 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_month.png diff --git a/core/res/res/drawable-ldpi/ic_menu_more.png b/core/res/res/drawable-ldpi/ic_menu_more.png Binary files differnew file mode 100644 index 000000000000..92965547b96e --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_more.png diff --git a/core/res/res/drawable-ldpi/ic_menu_my_calendar.png b/core/res/res/drawable-ldpi/ic_menu_my_calendar.png Binary files differnew file mode 100644 index 000000000000..db3a8b51db82 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_my_calendar.png diff --git a/core/res/res/drawable-ldpi/ic_menu_mylocation.png b/core/res/res/drawable-ldpi/ic_menu_mylocation.png Binary files differnew file mode 100644 index 000000000000..2db7867654d3 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_mylocation.png diff --git a/core/res/res/drawable-ldpi/ic_menu_myplaces.png b/core/res/res/drawable-ldpi/ic_menu_myplaces.png Binary files differnew file mode 100644 index 000000000000..9d2e8dc17ec0 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_myplaces.png diff --git a/core/res/res/drawable-ldpi/ic_menu_notifications.png b/core/res/res/drawable-ldpi/ic_menu_notifications.png Binary files differnew file mode 100644 index 000000000000..0a22b32a9402 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_notifications.png diff --git a/core/res/res/drawable-ldpi/ic_menu_play_clip.png b/core/res/res/drawable-ldpi/ic_menu_play_clip.png Binary files differnew file mode 100644 index 000000000000..7d0f11ee67a2 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_play_clip.png diff --git a/core/res/res/drawable-ldpi/ic_menu_preferences.png b/core/res/res/drawable-ldpi/ic_menu_preferences.png Binary files differnew file mode 100644 index 000000000000..efc2f3e4597e --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_preferences.png diff --git a/core/res/res/drawable-ldpi/ic_menu_recent_history.png b/core/res/res/drawable-ldpi/ic_menu_recent_history.png Binary files differnew file mode 100644 index 000000000000..c75f6e36b809 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_recent_history.png diff --git a/core/res/res/drawable-ldpi/ic_menu_refresh.png b/core/res/res/drawable-ldpi/ic_menu_refresh.png Binary files differnew file mode 100644 index 000000000000..b25dc061616a --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_refresh.png diff --git a/core/res/res/drawable-ldpi/ic_menu_report_image.png b/core/res/res/drawable-ldpi/ic_menu_report_image.png Binary files differnew file mode 100644 index 000000000000..f2c3a904ae72 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_report_image.png diff --git a/core/res/res/drawable-ldpi/ic_menu_revert.png b/core/res/res/drawable-ldpi/ic_menu_revert.png Binary files differnew file mode 100644 index 000000000000..b0f2c60c419d --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_revert.png diff --git a/core/res/res/drawable-ldpi/ic_menu_rotate.png b/core/res/res/drawable-ldpi/ic_menu_rotate.png Binary files differnew file mode 100644 index 000000000000..34dcbceb0f30 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_rotate.png diff --git a/core/res/res/drawable-ldpi/ic_menu_save.png b/core/res/res/drawable-ldpi/ic_menu_save.png Binary files differnew file mode 100644 index 000000000000..ac053b41d967 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_save.png diff --git a/core/res/res/drawable-ldpi/ic_menu_search.png b/core/res/res/drawable-ldpi/ic_menu_search.png Binary files differnew file mode 100644 index 000000000000..1d95408c6414 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_search.png diff --git a/core/res/res/drawable-ldpi/ic_menu_send.png b/core/res/res/drawable-ldpi/ic_menu_send.png Binary files differnew file mode 100644 index 000000000000..9043c11e9a36 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_send.png diff --git a/core/res/res/drawable-ldpi/ic_menu_set_as.png b/core/res/res/drawable-ldpi/ic_menu_set_as.png Binary files differnew file mode 100644 index 000000000000..d1997d316f01 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_set_as.png diff --git a/core/res/res/drawable-ldpi/ic_menu_share.png b/core/res/res/drawable-ldpi/ic_menu_share.png Binary files differnew file mode 100644 index 000000000000..f58d231817cb --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_share.png diff --git a/core/res/res/drawable-ldpi/ic_menu_slideshow.png b/core/res/res/drawable-ldpi/ic_menu_slideshow.png Binary files differnew file mode 100644 index 000000000000..a0625c4a6114 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_slideshow.png diff --git a/core/res/res/drawable-ldpi/ic_menu_sort_alphabetically.png b/core/res/res/drawable-ldpi/ic_menu_sort_alphabetically.png Binary files differnew file mode 100644 index 000000000000..438e85468225 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_sort_alphabetically.png diff --git a/core/res/res/drawable-ldpi/ic_menu_sort_by_size.png b/core/res/res/drawable-ldpi/ic_menu_sort_by_size.png Binary files differnew file mode 100644 index 000000000000..bb95da701f4f --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_sort_by_size.png diff --git a/core/res/res/drawable-ldpi/ic_menu_star.png b/core/res/res/drawable-ldpi/ic_menu_star.png Binary files differnew file mode 100644 index 000000000000..b88f0107e8a6 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_star.png diff --git a/core/res/res/drawable-ldpi/ic_menu_start_conversation.png b/core/res/res/drawable-ldpi/ic_menu_start_conversation.png Binary files differnew file mode 100644 index 000000000000..1e399288cfc0 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_start_conversation.png diff --git a/core/res/res/drawable-ldpi/ic_menu_stop.png b/core/res/res/drawable-ldpi/ic_menu_stop.png Binary files differnew file mode 100644 index 000000000000..d185ae2f12e5 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_stop.png diff --git a/core/res/res/drawable-ldpi/ic_menu_today.png b/core/res/res/drawable-ldpi/ic_menu_today.png Binary files differnew file mode 100644 index 000000000000..2bff7514d4c5 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_today.png diff --git a/core/res/res/drawable-ldpi/ic_menu_upload.png b/core/res/res/drawable-ldpi/ic_menu_upload.png Binary files differnew file mode 100644 index 000000000000..fd64fe1a5c02 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_upload.png diff --git a/core/res/res/drawable-ldpi/ic_menu_upload_you_tube.png b/core/res/res/drawable-ldpi/ic_menu_upload_you_tube.png Binary files differnew file mode 100644 index 000000000000..8fa7005ee4ce --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_upload_you_tube.png diff --git a/core/res/res/drawable-ldpi/ic_menu_view.png b/core/res/res/drawable-ldpi/ic_menu_view.png Binary files differnew file mode 100644 index 000000000000..f1acb3d02dea --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_view.png diff --git a/core/res/res/drawable-ldpi/ic_menu_week.png b/core/res/res/drawable-ldpi/ic_menu_week.png Binary files differnew file mode 100644 index 000000000000..0af314b8b998 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_week.png diff --git a/core/res/res/drawable-ldpi/ic_menu_zoom.png b/core/res/res/drawable-ldpi/ic_menu_zoom.png Binary files differnew file mode 100644 index 000000000000..ff291848e194 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_menu_zoom.png diff --git a/core/res/res/drawable-ldpi/ic_notification_clear_all.png b/core/res/res/drawable-ldpi/ic_notification_clear_all.png Binary files differnew file mode 100644 index 000000000000..e7797406c93c --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_notification_clear_all.png diff --git a/core/res/res/drawable-ldpi/ic_notification_overlay.9.png b/core/res/res/drawable-ldpi/ic_notification_overlay.9.png Binary files differnew file mode 100644 index 000000000000..771fa7384462 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_notification_overlay.9.png diff --git a/core/res/res/drawable-ldpi/ic_partial_secure.png b/core/res/res/drawable-ldpi/ic_partial_secure.png Binary files differnew file mode 100644 index 000000000000..a9c05b160079 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_partial_secure.png diff --git a/core/res/res/drawable-ldpi/ic_popup_disk_full.png b/core/res/res/drawable-ldpi/ic_popup_disk_full.png Binary files differnew file mode 100644 index 000000000000..f613f38c2cc2 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_popup_disk_full.png diff --git a/core/res/res/drawable-ldpi/ic_popup_reminder.png b/core/res/res/drawable-ldpi/ic_popup_reminder.png Binary files differnew file mode 100644 index 000000000000..332daef53e64 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_popup_reminder.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_1.png b/core/res/res/drawable-ldpi/ic_popup_sync_1.png Binary files differnew file mode 100644 index 000000000000..407e8de7009b --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_popup_sync_1.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_2.png b/core/res/res/drawable-ldpi/ic_popup_sync_2.png Binary files differnew file mode 100644 index 000000000000..a867aa726ce2 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_popup_sync_2.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_3.png b/core/res/res/drawable-ldpi/ic_popup_sync_3.png Binary files differnew file mode 100644 index 000000000000..77bd3d703cae --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_popup_sync_3.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_4.png b/core/res/res/drawable-ldpi/ic_popup_sync_4.png Binary files differnew file mode 100644 index 000000000000..131486bb6a6c --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_popup_sync_4.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_5.png b/core/res/res/drawable-ldpi/ic_popup_sync_5.png Binary files differnew file mode 100644 index 000000000000..33fded8f2c92 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_popup_sync_5.png diff --git a/core/res/res/drawable-ldpi/ic_popup_sync_6.png b/core/res/res/drawable-ldpi/ic_popup_sync_6.png Binary files differnew file mode 100644 index 000000000000..489dd56e1a43 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_popup_sync_6.png diff --git a/core/res/res/drawable-ldpi/ic_search_category_default.png b/core/res/res/drawable-ldpi/ic_search_category_default.png Binary files differnew file mode 100644 index 000000000000..1d95408c6414 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_search_category_default.png diff --git a/core/res/res/drawable-ldpi/ic_secure.png b/core/res/res/drawable-ldpi/ic_secure.png Binary files differnew file mode 100644 index 000000000000..02d74d1cfaf9 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_secure.png diff --git a/core/res/res/drawable-ldpi/ic_text_dot.png b/core/res/res/drawable-ldpi/ic_text_dot.png Binary files differnew file mode 100644 index 000000000000..4aff20ce9763 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_text_dot.png diff --git a/core/res/res/drawable-ldpi/ic_vibrate.png b/core/res/res/drawable-ldpi/ic_vibrate.png Binary files differnew file mode 100644 index 000000000000..726e9dcc2a39 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_vibrate.png diff --git a/core/res/res/drawable-ldpi/ic_vibrate_small.png b/core/res/res/drawable-ldpi/ic_vibrate_small.png Binary files differnew file mode 100644 index 000000000000..06bfbb5197b9 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_vibrate_small.png diff --git a/core/res/res/drawable-ldpi/ic_volume.png b/core/res/res/drawable-ldpi/ic_volume.png Binary files differnew file mode 100644 index 000000000000..b8a35610ee88 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_volume.png diff --git a/core/res/res/drawable-ldpi/ic_volume_bluetooth_ad2p.png b/core/res/res/drawable-ldpi/ic_volume_bluetooth_ad2p.png Binary files differnew file mode 100644 index 000000000000..facfa4cd5b85 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_volume_bluetooth_ad2p.png diff --git a/core/res/res/drawable-ldpi/ic_volume_bluetooth_in_call.png b/core/res/res/drawable-ldpi/ic_volume_bluetooth_in_call.png Binary files differnew file mode 100644 index 000000000000..298ce6b49202 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_volume_bluetooth_in_call.png diff --git a/core/res/res/drawable-ldpi/ic_volume_off.png b/core/res/res/drawable-ldpi/ic_volume_off.png Binary files differnew file mode 100644 index 000000000000..bad1a685a728 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_volume_off.png diff --git a/core/res/res/drawable-ldpi/ic_volume_off_small.png b/core/res/res/drawable-ldpi/ic_volume_off_small.png Binary files differnew file mode 100644 index 000000000000..56239112e41c --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_volume_off_small.png diff --git a/core/res/res/drawable-ldpi/ic_volume_small.png b/core/res/res/drawable-ldpi/ic_volume_small.png Binary files differnew file mode 100644 index 000000000000..530f6b44f9c8 --- /dev/null +++ b/core/res/res/drawable-ldpi/ic_volume_small.png diff --git a/core/res/res/drawable-ldpi/icon_highlight_rectangle.9.png b/core/res/res/drawable-ldpi/icon_highlight_rectangle.9.png Binary files differnew file mode 100644 index 000000000000..27519b20b8b0 --- /dev/null +++ b/core/res/res/drawable-ldpi/icon_highlight_rectangle.9.png diff --git a/core/res/res/drawable-ldpi/icon_highlight_square.9.png b/core/res/res/drawable-ldpi/icon_highlight_square.9.png Binary files differnew file mode 100644 index 000000000000..228ef237da77 --- /dev/null +++ b/core/res/res/drawable-ldpi/icon_highlight_square.9.png diff --git a/core/res/res/drawable-ldpi/ime_qwerty.png b/core/res/res/drawable-ldpi/ime_qwerty.png Binary files differnew file mode 100644 index 000000000000..11e26dbfcb7a --- /dev/null +++ b/core/res/res/drawable-ldpi/ime_qwerty.png diff --git a/core/res/res/drawable-ldpi/indicator_code_lock_drag_direction_green_up.png b/core/res/res/drawable-ldpi/indicator_code_lock_drag_direction_green_up.png Binary files differnew file mode 100644 index 000000000000..9c8610fce53f --- /dev/null +++ b/core/res/res/drawable-ldpi/indicator_code_lock_drag_direction_green_up.png diff --git a/core/res/res/drawable-ldpi/indicator_code_lock_drag_direction_red_up.png b/core/res/res/drawable-ldpi/indicator_code_lock_drag_direction_red_up.png Binary files differnew file mode 100644 index 000000000000..ac8e42aeba84 --- /dev/null +++ b/core/res/res/drawable-ldpi/indicator_code_lock_drag_direction_red_up.png diff --git a/core/res/res/drawable-ldpi/indicator_code_lock_point_area_default.png b/core/res/res/drawable-ldpi/indicator_code_lock_point_area_default.png Binary files differnew file mode 100644 index 000000000000..5b77b9ffb346 --- /dev/null +++ b/core/res/res/drawable-ldpi/indicator_code_lock_point_area_default.png diff --git a/core/res/res/drawable-ldpi/indicator_code_lock_point_area_green.png b/core/res/res/drawable-ldpi/indicator_code_lock_point_area_green.png Binary files differnew file mode 100644 index 000000000000..c7c0b9a4d28b --- /dev/null +++ b/core/res/res/drawable-ldpi/indicator_code_lock_point_area_green.png diff --git a/core/res/res/drawable-ldpi/indicator_code_lock_point_area_red.png b/core/res/res/drawable-ldpi/indicator_code_lock_point_area_red.png Binary files differnew file mode 100644 index 000000000000..ac02dc4b087b --- /dev/null +++ b/core/res/res/drawable-ldpi/indicator_code_lock_point_area_red.png diff --git a/core/res/res/drawable-ldpi/indicator_input_error.png b/core/res/res/drawable-ldpi/indicator_input_error.png Binary files differnew file mode 100644 index 000000000000..f1a804a6ad83 --- /dev/null +++ b/core/res/res/drawable-ldpi/indicator_input_error.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_green.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_green.png Binary files differnew file mode 100644 index 000000000000..cb3002476e85 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_green.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_yellow.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_yellow.png Binary files differnew file mode 100644 index 000000000000..f63e7377f5c3 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_left_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_middle_yellow.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_middle_yellow.png Binary files differnew file mode 100644 index 000000000000..249d53dfbaeb --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_middle_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_red.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_red.png Binary files differnew file mode 100644 index 000000000000..6a338fe2aaed --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_red.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_yellow.png b/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_yellow.png Binary files differnew file mode 100644 index 000000000000..50f5c47d6bc8 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_long_right_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_short_left.png b/core/res/res/drawable-ldpi/jog_dial_arrow_short_left.png Binary files differnew file mode 100644 index 000000000000..a8ed69874463 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_short_left.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_short_left_and_right.png b/core/res/res/drawable-ldpi/jog_dial_arrow_short_left_and_right.png Binary files differnew file mode 100644 index 000000000000..bfd6c4e5ceb3 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_short_left_and_right.png diff --git a/core/res/res/drawable-ldpi/jog_dial_arrow_short_right.png b/core/res/res/drawable-ldpi/jog_dial_arrow_short_right.png Binary files differnew file mode 100644 index 000000000000..d22d50859f04 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_arrow_short_right.png diff --git a/core/res/res/drawable-ldpi/jog_dial_bg.png b/core/res/res/drawable-ldpi/jog_dial_bg.png Binary files differnew file mode 100644 index 000000000000..263188bbff47 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_bg.png diff --git a/core/res/res/drawable-ldpi/jog_dial_dimple.png b/core/res/res/drawable-ldpi/jog_dial_dimple.png Binary files differnew file mode 100644 index 000000000000..c6f52ef9aad6 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_dimple.png diff --git a/core/res/res/drawable-ldpi/jog_dial_dimple_dim.png b/core/res/res/drawable-ldpi/jog_dial_dimple_dim.png Binary files differnew file mode 100644 index 000000000000..b85db4e5de47 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_dial_dimple_dim.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_gray.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_gray.9.png Binary files differnew file mode 100644 index 000000000000..be9edd17d565 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_gray.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_green.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_green.9.png Binary files differnew file mode 100644 index 000000000000..8b445fba9136 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_green.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_red.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_red.9.png Binary files differnew file mode 100644 index 000000000000..f9b07f89e25a --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_red.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png Binary files differnew file mode 100644 index 000000000000..473fcb04671d --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_normal.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_normal.9.png Binary files differnew file mode 100644 index 000000000000..b8ecac7f36cb --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_normal.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_left_end_pressed.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_pressed.9.png Binary files differnew file mode 100644 index 000000000000..95b4f4b4bf5f --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_left_end_pressed.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_gray.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_gray.9.png Binary files differnew file mode 100644 index 000000000000..2bec09ed2fc9 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_gray.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_green.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_green.9.png Binary files differnew file mode 100644 index 000000000000..8f8109e25b69 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_green.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_red.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_red.9.png Binary files differnew file mode 100644 index 000000000000..a453ac3456f3 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_red.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png Binary files differnew file mode 100644 index 000000000000..f7ef794c07f8 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_confirm_yellow.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_normal.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_normal.9.png Binary files differnew file mode 100644 index 000000000000..74b769b19987 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_normal.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_bar_right_end_pressed.9.png b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_pressed.9.png Binary files differnew file mode 100644 index 000000000000..d12058d052b3 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_bar_right_end_pressed.9.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_confirm_gray.png b/core/res/res/drawable-ldpi/jog_tab_left_confirm_gray.png Binary files differnew file mode 100644 index 000000000000..92c4a2e11dde --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_left_confirm_gray.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_confirm_green.png b/core/res/res/drawable-ldpi/jog_tab_left_confirm_green.png Binary files differnew file mode 100644 index 000000000000..13b7c6342560 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_left_confirm_green.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_confirm_red.png b/core/res/res/drawable-ldpi/jog_tab_left_confirm_red.png Binary files differnew file mode 100644 index 000000000000..414c07b6f89f --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_left_confirm_red.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_confirm_yellow.png b/core/res/res/drawable-ldpi/jog_tab_left_confirm_yellow.png Binary files differnew file mode 100644 index 000000000000..afccc396a227 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_left_confirm_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_normal.png b/core/res/res/drawable-ldpi/jog_tab_left_normal.png Binary files differnew file mode 100644 index 000000000000..6ba64791d92d --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_left_normal.png diff --git a/core/res/res/drawable-ldpi/jog_tab_left_pressed.png b/core/res/res/drawable-ldpi/jog_tab_left_pressed.png Binary files differnew file mode 100644 index 000000000000..3dc9c4790d72 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_left_pressed.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_confirm_gray.png b/core/res/res/drawable-ldpi/jog_tab_right_confirm_gray.png Binary files differnew file mode 100644 index 000000000000..ec1020d64666 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_right_confirm_gray.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_confirm_green.png b/core/res/res/drawable-ldpi/jog_tab_right_confirm_green.png Binary files differnew file mode 100644 index 000000000000..5b600c95c318 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_right_confirm_green.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_confirm_red.png b/core/res/res/drawable-ldpi/jog_tab_right_confirm_red.png Binary files differnew file mode 100644 index 000000000000..b640578a54ba --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_right_confirm_red.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_confirm_yellow.png b/core/res/res/drawable-ldpi/jog_tab_right_confirm_yellow.png Binary files differnew file mode 100644 index 000000000000..c4490bc24c07 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_right_confirm_yellow.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_normal.png b/core/res/res/drawable-ldpi/jog_tab_right_normal.png Binary files differnew file mode 100644 index 000000000000..024d409b38af --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_right_normal.png diff --git a/core/res/res/drawable-ldpi/jog_tab_right_pressed.png b/core/res/res/drawable-ldpi/jog_tab_right_pressed.png Binary files differnew file mode 100644 index 000000000000..22acd25dfa5e --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_right_pressed.png diff --git a/core/res/res/drawable-ldpi/jog_tab_target_gray.png b/core/res/res/drawable-ldpi/jog_tab_target_gray.png Binary files differnew file mode 100644 index 000000000000..7921676d604f --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_target_gray.png diff --git a/core/res/res/drawable-ldpi/jog_tab_target_green.png b/core/res/res/drawable-ldpi/jog_tab_target_green.png Binary files differnew file mode 100644 index 000000000000..df5c273ef620 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_target_green.png diff --git a/core/res/res/drawable-ldpi/jog_tab_target_red.png b/core/res/res/drawable-ldpi/jog_tab_target_red.png Binary files differnew file mode 100644 index 000000000000..2bb6df9670c6 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_target_red.png diff --git a/core/res/res/drawable-ldpi/jog_tab_target_yellow.png b/core/res/res/drawable-ldpi/jog_tab_target_yellow.png Binary files differnew file mode 100644 index 000000000000..e7e4347fe0e1 --- /dev/null +++ b/core/res/res/drawable-ldpi/jog_tab_target_yellow.png diff --git a/core/res/res/drawable-ldpi/keyboard_accessory_bg_landscape.9.png b/core/res/res/drawable-ldpi/keyboard_accessory_bg_landscape.9.png Binary files differnew file mode 100644 index 000000000000..4ab1dd0201bd --- /dev/null +++ b/core/res/res/drawable-ldpi/keyboard_accessory_bg_landscape.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_background.9.png b/core/res/res/drawable-ldpi/keyboard_background.9.png Binary files differnew file mode 100644 index 000000000000..06d42c0ce92e --- /dev/null +++ b/core/res/res/drawable-ldpi/keyboard_background.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_key_feedback_background.9.png b/core/res/res/drawable-ldpi/keyboard_key_feedback_background.9.png Binary files differnew file mode 100644 index 000000000000..6f936f15712c --- /dev/null +++ b/core/res/res/drawable-ldpi/keyboard_key_feedback_background.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_key_feedback_more_background.9.png b/core/res/res/drawable-ldpi/keyboard_key_feedback_more_background.9.png Binary files differnew file mode 100644 index 000000000000..7e81c3d433c3 --- /dev/null +++ b/core/res/res/drawable-ldpi/keyboard_key_feedback_more_background.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_popup_panel_background.9.png b/core/res/res/drawable-ldpi/keyboard_popup_panel_background.9.png Binary files differnew file mode 100644 index 000000000000..955fecc25277 --- /dev/null +++ b/core/res/res/drawable-ldpi/keyboard_popup_panel_background.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_popup_panel_trans_background.9.png b/core/res/res/drawable-ldpi/keyboard_popup_panel_trans_background.9.png Binary files differnew file mode 100644 index 000000000000..78ac46d300ee --- /dev/null +++ b/core/res/res/drawable-ldpi/keyboard_popup_panel_trans_background.9.png diff --git a/core/res/res/drawable-ldpi/keyboard_textfield_selected.9.png b/core/res/res/drawable-ldpi/keyboard_textfield_selected.9.png Binary files differnew file mode 100644 index 000000000000..d6478fb0cd39 --- /dev/null +++ b/core/res/res/drawable-ldpi/keyboard_textfield_selected.9.png diff --git a/core/res/res/drawable-ldpi/light_header.9.png b/core/res/res/drawable-ldpi/light_header.9.png Binary files differnew file mode 100644 index 000000000000..4318252a0284 --- /dev/null +++ b/core/res/res/drawable-ldpi/light_header.9.png diff --git a/core/res/res/drawable-ldpi/list_selector_background_disabled.9.png b/core/res/res/drawable-ldpi/list_selector_background_disabled.9.png Binary files differnew file mode 100644 index 000000000000..b94396bea424 --- /dev/null +++ b/core/res/res/drawable-ldpi/list_selector_background_disabled.9.png diff --git a/core/res/res/drawable-ldpi/list_selector_background_focus.9.png b/core/res/res/drawable-ldpi/list_selector_background_focus.9.png Binary files differnew file mode 100644 index 000000000000..f2887a9eb6f1 --- /dev/null +++ b/core/res/res/drawable-ldpi/list_selector_background_focus.9.png diff --git a/core/res/res/drawable-ldpi/list_selector_background_longpress.9.png b/core/res/res/drawable-ldpi/list_selector_background_longpress.9.png Binary files differnew file mode 100644 index 000000000000..1fb46bb2eba8 --- /dev/null +++ b/core/res/res/drawable-ldpi/list_selector_background_longpress.9.png diff --git a/core/res/res/drawable-ldpi/list_selector_background_pressed.9.png b/core/res/res/drawable-ldpi/list_selector_background_pressed.9.png Binary files differnew file mode 100644 index 000000000000..4980eab56403 --- /dev/null +++ b/core/res/res/drawable-ldpi/list_selector_background_pressed.9.png diff --git a/core/res/res/drawable-ldpi/maps_google_logo.png b/core/res/res/drawable-ldpi/maps_google_logo.png Binary files differnew file mode 100644 index 000000000000..84cc52359539 --- /dev/null +++ b/core/res/res/drawable-ldpi/maps_google_logo.png diff --git a/core/res/res/drawable-ldpi/menu_background.9.png b/core/res/res/drawable-ldpi/menu_background.9.png Binary files differnew file mode 100644 index 000000000000..18c1f403fc61 --- /dev/null +++ b/core/res/res/drawable-ldpi/menu_background.9.png diff --git a/core/res/res/drawable-ldpi/menu_background_fill_parent_width.9.png b/core/res/res/drawable-ldpi/menu_background_fill_parent_width.9.png Binary files differnew file mode 100644 index 000000000000..02de32308dd2 --- /dev/null +++ b/core/res/res/drawable-ldpi/menu_background_fill_parent_width.9.png diff --git a/core/res/res/drawable-ldpi/menu_separator.9.png b/core/res/res/drawable-ldpi/menu_separator.9.png Binary files differnew file mode 100644 index 000000000000..9e2dd7f99667 --- /dev/null +++ b/core/res/res/drawable-ldpi/menu_separator.9.png diff --git a/core/res/res/drawable-ldpi/menu_submenu_background.9.png b/core/res/res/drawable-ldpi/menu_submenu_background.9.png Binary files differnew file mode 100644 index 000000000000..25b27d400351 --- /dev/null +++ b/core/res/res/drawable-ldpi/menu_submenu_background.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_background_focus.9.png b/core/res/res/drawable-ldpi/menuitem_background_focus.9.png Binary files differnew file mode 100644 index 000000000000..072b665b6793 --- /dev/null +++ b/core/res/res/drawable-ldpi/menuitem_background_focus.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_background_pressed.9.png b/core/res/res/drawable-ldpi/menuitem_background_pressed.9.png Binary files differnew file mode 100644 index 000000000000..1def2a156d42 --- /dev/null +++ b/core/res/res/drawable-ldpi/menuitem_background_pressed.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_background_solid_focused.9.png b/core/res/res/drawable-ldpi/menuitem_background_solid_focused.9.png Binary files differnew file mode 100644 index 000000000000..671e75616929 --- /dev/null +++ b/core/res/res/drawable-ldpi/menuitem_background_solid_focused.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_background_solid_pressed.9.png b/core/res/res/drawable-ldpi/menuitem_background_solid_pressed.9.png Binary files differnew file mode 100644 index 000000000000..5f334d8681fa --- /dev/null +++ b/core/res/res/drawable-ldpi/menuitem_background_solid_pressed.9.png diff --git a/core/res/res/drawable-ldpi/menuitem_checkbox_on.png b/core/res/res/drawable-ldpi/menuitem_checkbox_on.png Binary files differnew file mode 100644 index 000000000000..61a484356edc --- /dev/null +++ b/core/res/res/drawable-ldpi/menuitem_checkbox_on.png diff --git a/core/res/res/drawable-ldpi/overscroll_edge.png b/core/res/res/drawable-ldpi/overscroll_edge.png Binary files differnew file mode 100644 index 000000000000..b11f7d297a93 --- /dev/null +++ b/core/res/res/drawable-ldpi/overscroll_edge.png diff --git a/core/res/res/drawable-ldpi/overscroll_glow.png b/core/res/res/drawable-ldpi/overscroll_glow.png Binary files differnew file mode 100644 index 000000000000..029296afc7f7 --- /dev/null +++ b/core/res/res/drawable-ldpi/overscroll_glow.png diff --git a/core/res/res/drawable-ldpi/panel_background.9.png b/core/res/res/drawable-ldpi/panel_background.9.png Binary files differnew file mode 100644 index 000000000000..7ea328db8f73 --- /dev/null +++ b/core/res/res/drawable-ldpi/panel_background.9.png diff --git a/core/res/res/drawable-ldpi/panel_picture_frame_bg_focus_blue.9.png b/core/res/res/drawable-ldpi/panel_picture_frame_bg_focus_blue.9.png Binary files differnew file mode 100644 index 000000000000..14eb7f77dd10 --- /dev/null +++ b/core/res/res/drawable-ldpi/panel_picture_frame_bg_focus_blue.9.png diff --git a/core/res/res/drawable-ldpi/panel_picture_frame_bg_normal.9.png b/core/res/res/drawable-ldpi/panel_picture_frame_bg_normal.9.png Binary files differnew file mode 100644 index 000000000000..c8cd101f28e8 --- /dev/null +++ b/core/res/res/drawable-ldpi/panel_picture_frame_bg_normal.9.png diff --git a/core/res/res/drawable-ldpi/panel_picture_frame_bg_pressed_blue.9.png b/core/res/res/drawable-ldpi/panel_picture_frame_bg_pressed_blue.9.png Binary files differnew file mode 100644 index 000000000000..0badf2b9b74a --- /dev/null +++ b/core/res/res/drawable-ldpi/panel_picture_frame_bg_pressed_blue.9.png diff --git a/core/res/res/drawable-ldpi/password_field_default.9.png b/core/res/res/drawable-ldpi/password_field_default.9.png Binary files differnew file mode 100644 index 000000000000..a84abf25ad05 --- /dev/null +++ b/core/res/res/drawable-ldpi/password_field_default.9.png diff --git a/core/res/res/drawable-ldpi/picture_emergency.png b/core/res/res/drawable-ldpi/picture_emergency.png Binary files differnew file mode 100644 index 000000000000..dbb738f97ae0 --- /dev/null +++ b/core/res/res/drawable-ldpi/picture_emergency.png diff --git a/core/res/res/drawable-ldpi/picture_frame.9.png b/core/res/res/drawable-ldpi/picture_frame.9.png Binary files differnew file mode 100644 index 000000000000..f302bf3d4c4e --- /dev/null +++ b/core/res/res/drawable-ldpi/picture_frame.9.png diff --git a/core/res/res/drawable-ldpi/popup_bottom_bright.9.png b/core/res/res/drawable-ldpi/popup_bottom_bright.9.png Binary files differnew file mode 100644 index 000000000000..a8d52a22edfb --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_bottom_bright.9.png diff --git a/core/res/res/drawable-ldpi/popup_bottom_dark.9.png b/core/res/res/drawable-ldpi/popup_bottom_dark.9.png Binary files differnew file mode 100644 index 000000000000..b0b64dfd8241 --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_bottom_dark.9.png diff --git a/core/res/res/drawable-ldpi/popup_bottom_medium.9.png b/core/res/res/drawable-ldpi/popup_bottom_medium.9.png Binary files differnew file mode 100644 index 000000000000..7bdef97ad666 --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_bottom_medium.9.png diff --git a/core/res/res/drawable-ldpi/popup_center_bright.9.png b/core/res/res/drawable-ldpi/popup_center_bright.9.png Binary files differnew file mode 100644 index 000000000000..0bfe6ba70f30 --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_center_bright.9.png diff --git a/core/res/res/drawable-ldpi/popup_center_dark.9.png b/core/res/res/drawable-ldpi/popup_center_dark.9.png Binary files differnew file mode 100644 index 000000000000..e76a452c96a0 --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_center_dark.9.png diff --git a/core/res/res/drawable-ldpi/popup_center_medium.9.png b/core/res/res/drawable-ldpi/popup_center_medium.9.png Binary files differnew file mode 100644 index 000000000000..a8de1870b85b --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_center_medium.9.png diff --git a/core/res/res/drawable-ldpi/popup_full_bright.9.png b/core/res/res/drawable-ldpi/popup_full_bright.9.png Binary files differnew file mode 100644 index 000000000000..b6bbacd0db15 --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_full_bright.9.png diff --git a/core/res/res/drawable-ldpi/popup_full_dark.9.png b/core/res/res/drawable-ldpi/popup_full_dark.9.png Binary files differnew file mode 100644 index 000000000000..ed36fce45064 --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_full_dark.9.png diff --git a/core/res/res/drawable-ldpi/popup_inline_error.9.png b/core/res/res/drawable-ldpi/popup_inline_error.9.png Binary files differnew file mode 100644 index 000000000000..cdc66fffe0af --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_inline_error.9.png diff --git a/core/res/res/drawable-ldpi/popup_inline_error_above.9.png b/core/res/res/drawable-ldpi/popup_inline_error_above.9.png Binary files differnew file mode 100644 index 000000000000..673685d39e1f --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_inline_error_above.9.png diff --git a/core/res/res/drawable-ldpi/popup_top_bright.9.png b/core/res/res/drawable-ldpi/popup_top_bright.9.png Binary files differnew file mode 100644 index 000000000000..51f1f0f47831 --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_top_bright.9.png diff --git a/core/res/res/drawable-ldpi/popup_top_dark.9.png b/core/res/res/drawable-ldpi/popup_top_dark.9.png Binary files differnew file mode 100644 index 000000000000..81e19184f593 --- /dev/null +++ b/core/res/res/drawable-ldpi/popup_top_dark.9.png diff --git a/core/res/res/drawable-ldpi/presence_audio_away.png b/core/res/res/drawable-ldpi/presence_audio_away.png Binary files differnew file mode 100644 index 000000000000..73ad0dae2bbc --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_audio_away.png diff --git a/core/res/res/drawable-ldpi/presence_audio_busy.png b/core/res/res/drawable-ldpi/presence_audio_busy.png Binary files differnew file mode 100644 index 000000000000..8b64d450eb16 --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_audio_busy.png diff --git a/core/res/res/drawable-ldpi/presence_audio_online.png b/core/res/res/drawable-ldpi/presence_audio_online.png Binary files differnew file mode 100644 index 000000000000..455db05286e7 --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_audio_online.png diff --git a/core/res/res/drawable-ldpi/presence_away.png b/core/res/res/drawable-ldpi/presence_away.png Binary files differnew file mode 100644 index 000000000000..5228a4b6bc0a --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_away.png diff --git a/core/res/res/drawable-ldpi/presence_busy.png b/core/res/res/drawable-ldpi/presence_busy.png Binary files differnew file mode 100644 index 000000000000..79fddf78a316 --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_busy.png diff --git a/core/res/res/drawable-ldpi/presence_invisible.png b/core/res/res/drawable-ldpi/presence_invisible.png Binary files differnew file mode 100644 index 000000000000..fb1654b53084 --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_invisible.png diff --git a/core/res/res/drawable-ldpi/presence_offline.png b/core/res/res/drawable-ldpi/presence_offline.png Binary files differnew file mode 100644 index 000000000000..45467992f915 --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_offline.png diff --git a/core/res/res/drawable-ldpi/presence_online.png b/core/res/res/drawable-ldpi/presence_online.png Binary files differnew file mode 100644 index 000000000000..c400a1820e95 --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_online.png diff --git a/core/res/res/drawable-ldpi/presence_video_away.png b/core/res/res/drawable-ldpi/presence_video_away.png Binary files differnew file mode 100644 index 000000000000..3695a0e950d4 --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_video_away.png diff --git a/core/res/res/drawable-ldpi/presence_video_busy.png b/core/res/res/drawable-ldpi/presence_video_busy.png Binary files differnew file mode 100644 index 000000000000..c4b0728de57a --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_video_busy.png diff --git a/core/res/res/drawable-ldpi/presence_video_online.png b/core/res/res/drawable-ldpi/presence_video_online.png Binary files differnew file mode 100644 index 000000000000..786d0e6dcbaf --- /dev/null +++ b/core/res/res/drawable-ldpi/presence_video_online.png diff --git a/core/res/res/drawable-ldpi/pressed_application_background_static.png b/core/res/res/drawable-ldpi/pressed_application_background_static.png Binary files differnew file mode 100644 index 000000000000..d0fd302c9952 --- /dev/null +++ b/core/res/res/drawable-ldpi/pressed_application_background_static.png diff --git a/core/res/res/drawable-ldpi/progressbar_indeterminate1.png b/core/res/res/drawable-ldpi/progressbar_indeterminate1.png Binary files differnew file mode 100644 index 000000000000..92a1aeef28a5 --- /dev/null +++ b/core/res/res/drawable-ldpi/progressbar_indeterminate1.png diff --git a/core/res/res/drawable-ldpi/progressbar_indeterminate2.png b/core/res/res/drawable-ldpi/progressbar_indeterminate2.png Binary files differnew file mode 100644 index 000000000000..1fd2f3779ebe --- /dev/null +++ b/core/res/res/drawable-ldpi/progressbar_indeterminate2.png diff --git a/core/res/res/drawable-ldpi/progressbar_indeterminate3.png b/core/res/res/drawable-ldpi/progressbar_indeterminate3.png Binary files differnew file mode 100644 index 000000000000..adb80227f68c --- /dev/null +++ b/core/res/res/drawable-ldpi/progressbar_indeterminate3.png diff --git a/core/res/res/drawable-ldpi/quickcontact_badge_pressed.9.png b/core/res/res/drawable-ldpi/quickcontact_badge_pressed.9.png Binary files differnew file mode 100644 index 000000000000..ff43fed5f54c --- /dev/null +++ b/core/res/res/drawable-ldpi/quickcontact_badge_pressed.9.png diff --git a/core/res/res/drawable-ldpi/quickcontact_badge_small_pressed.9.png b/core/res/res/drawable-ldpi/quickcontact_badge_small_pressed.9.png Binary files differnew file mode 100644 index 000000000000..5aedb70351da --- /dev/null +++ b/core/res/res/drawable-ldpi/quickcontact_badge_small_pressed.9.png diff --git a/core/res/res/drawable-ldpi/quickcontact_badge_small_unpressed.9.png b/core/res/res/drawable-ldpi/quickcontact_badge_small_unpressed.9.png Binary files differnew file mode 100644 index 000000000000..6e212b69cc11 --- /dev/null +++ b/core/res/res/drawable-ldpi/quickcontact_badge_small_unpressed.9.png diff --git a/core/res/res/drawable-ldpi/quickcontact_badge_unpressed.9.png b/core/res/res/drawable-ldpi/quickcontact_badge_unpressed.9.png Binary files differnew file mode 100644 index 000000000000..417c11b73bc5 --- /dev/null +++ b/core/res/res/drawable-ldpi/quickcontact_badge_unpressed.9.png diff --git a/core/res/res/drawable-ldpi/radiobutton_off_background.png b/core/res/res/drawable-ldpi/radiobutton_off_background.png Binary files differnew file mode 100644 index 000000000000..d8023c9ca1fc --- /dev/null +++ b/core/res/res/drawable-ldpi/radiobutton_off_background.png diff --git a/core/res/res/drawable-ldpi/radiobutton_on_background.png b/core/res/res/drawable-ldpi/radiobutton_on_background.png Binary files differnew file mode 100644 index 000000000000..4014d4ba9ab0 --- /dev/null +++ b/core/res/res/drawable-ldpi/radiobutton_on_background.png diff --git a/core/res/res/drawable-ldpi/rate_star_big_half.png b/core/res/res/drawable-ldpi/rate_star_big_half.png Binary files differnew file mode 100644 index 000000000000..0b4dc17322a3 --- /dev/null +++ b/core/res/res/drawable-ldpi/rate_star_big_half.png diff --git a/core/res/res/drawable-ldpi/rate_star_big_off.png b/core/res/res/drawable-ldpi/rate_star_big_off.png Binary files differnew file mode 100644 index 000000000000..1d8eef67fb8e --- /dev/null +++ b/core/res/res/drawable-ldpi/rate_star_big_off.png diff --git a/core/res/res/drawable-ldpi/rate_star_big_on.png b/core/res/res/drawable-ldpi/rate_star_big_on.png Binary files differnew file mode 100644 index 000000000000..b6d4d891e39a --- /dev/null +++ b/core/res/res/drawable-ldpi/rate_star_big_on.png diff --git a/core/res/res/drawable-ldpi/rate_star_med_half.png b/core/res/res/drawable-ldpi/rate_star_med_half.png Binary files differnew file mode 100644 index 000000000000..f9bcc5c43ebd --- /dev/null +++ b/core/res/res/drawable-ldpi/rate_star_med_half.png diff --git a/core/res/res/drawable-ldpi/rate_star_med_off.png b/core/res/res/drawable-ldpi/rate_star_med_off.png Binary files differnew file mode 100644 index 000000000000..eec4ae5c3694 --- /dev/null +++ b/core/res/res/drawable-ldpi/rate_star_med_off.png diff --git a/core/res/res/drawable-ldpi/rate_star_med_on.png b/core/res/res/drawable-ldpi/rate_star_med_on.png Binary files differnew file mode 100644 index 000000000000..03a4cffc6c70 --- /dev/null +++ b/core/res/res/drawable-ldpi/rate_star_med_on.png diff --git a/core/res/res/drawable-ldpi/rate_star_small_half.png b/core/res/res/drawable-ldpi/rate_star_small_half.png Binary files differnew file mode 100644 index 000000000000..3e2b99bfc645 --- /dev/null +++ b/core/res/res/drawable-ldpi/rate_star_small_half.png diff --git a/core/res/res/drawable-ldpi/rate_star_small_off.png b/core/res/res/drawable-ldpi/rate_star_small_off.png Binary files differnew file mode 100644 index 000000000000..19db3725edd7 --- /dev/null +++ b/core/res/res/drawable-ldpi/rate_star_small_off.png diff --git a/core/res/res/drawable-ldpi/rate_star_small_on.png b/core/res/res/drawable-ldpi/rate_star_small_on.png Binary files differnew file mode 100644 index 000000000000..b3b9a8433520 --- /dev/null +++ b/core/res/res/drawable-ldpi/rate_star_small_on.png diff --git a/core/res/res/drawable-ldpi/recent_dialog_background.9.png b/core/res/res/drawable-ldpi/recent_dialog_background.9.png Binary files differnew file mode 100644 index 000000000000..ab8d87d300ea --- /dev/null +++ b/core/res/res/drawable-ldpi/recent_dialog_background.9.png diff --git a/core/res/res/drawable-ldpi/reticle.png b/core/res/res/drawable-ldpi/reticle.png Binary files differnew file mode 100644 index 000000000000..daaee11978ec --- /dev/null +++ b/core/res/res/drawable-ldpi/reticle.png diff --git a/core/res/res/drawable-ldpi/scrollbar_handle_accelerated_anim2.9.png b/core/res/res/drawable-ldpi/scrollbar_handle_accelerated_anim2.9.png Binary files differnew file mode 100644 index 000000000000..0562c037f883 --- /dev/null +++ b/core/res/res/drawable-ldpi/scrollbar_handle_accelerated_anim2.9.png diff --git a/core/res/res/drawable-ldpi/scrollbar_handle_horizontal.9.png b/core/res/res/drawable-ldpi/scrollbar_handle_horizontal.9.png Binary files differnew file mode 100644 index 000000000000..b3c10cf6f2ab --- /dev/null +++ b/core/res/res/drawable-ldpi/scrollbar_handle_horizontal.9.png diff --git a/core/res/res/drawable-ldpi/scrollbar_handle_vertical.9.png b/core/res/res/drawable-ldpi/scrollbar_handle_vertical.9.png Binary files differnew file mode 100644 index 000000000000..a04e632a9e6a --- /dev/null +++ b/core/res/res/drawable-ldpi/scrollbar_handle_vertical.9.png diff --git a/core/res/res/drawable-ldpi/search_dropdown_background.9.png b/core/res/res/drawable-ldpi/search_dropdown_background.9.png Binary files differnew file mode 100644 index 000000000000..b695dcbcc421 --- /dev/null +++ b/core/res/res/drawable-ldpi/search_dropdown_background.9.png diff --git a/core/res/res/drawable-ldpi/search_plate.9.png b/core/res/res/drawable-ldpi/search_plate.9.png Binary files differnew file mode 100644 index 000000000000..40a351f6bfcc --- /dev/null +++ b/core/res/res/drawable-ldpi/search_plate.9.png diff --git a/core/res/res/drawable-ldpi/search_plate_global.9.png b/core/res/res/drawable-ldpi/search_plate_global.9.png Binary files differnew file mode 100644 index 000000000000..2fa21299fbc0 --- /dev/null +++ b/core/res/res/drawable-ldpi/search_plate_global.9.png diff --git a/core/res/res/drawable-ldpi/seek_thumb_normal.png b/core/res/res/drawable-ldpi/seek_thumb_normal.png Binary files differnew file mode 100644 index 000000000000..9c2d90d56f79 --- /dev/null +++ b/core/res/res/drawable-ldpi/seek_thumb_normal.png diff --git a/core/res/res/drawable-ldpi/seek_thumb_pressed.png b/core/res/res/drawable-ldpi/seek_thumb_pressed.png Binary files differnew file mode 100644 index 000000000000..555cde829982 --- /dev/null +++ b/core/res/res/drawable-ldpi/seek_thumb_pressed.png diff --git a/core/res/res/drawable-ldpi/seek_thumb_selected.png b/core/res/res/drawable-ldpi/seek_thumb_selected.png Binary files differnew file mode 100644 index 000000000000..4f118180034d --- /dev/null +++ b/core/res/res/drawable-ldpi/seek_thumb_selected.png diff --git a/core/res/res/drawable-ldpi/settings_header_raw.9.png b/core/res/res/drawable-ldpi/settings_header_raw.9.png Binary files differnew file mode 100644 index 000000000000..142d8c2f10bd --- /dev/null +++ b/core/res/res/drawable-ldpi/settings_header_raw.9.png diff --git a/core/res/res/drawable-ldpi/spinner_black_16.png b/core/res/res/drawable-ldpi/spinner_black_16.png Binary files differnew file mode 100644 index 000000000000..c876d8a65096 --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_black_16.png diff --git a/core/res/res/drawable-ldpi/spinner_black_20.png b/core/res/res/drawable-ldpi/spinner_black_20.png Binary files differnew file mode 100644 index 000000000000..7751f9ab8353 --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_black_20.png diff --git a/core/res/res/drawable-ldpi/spinner_black_48.png b/core/res/res/drawable-ldpi/spinner_black_48.png Binary files differnew file mode 100644 index 000000000000..c7aa51708062 --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_black_48.png diff --git a/core/res/res/drawable-ldpi/spinner_black_76.png b/core/res/res/drawable-ldpi/spinner_black_76.png Binary files differnew file mode 100644 index 000000000000..44f559cd1313 --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_black_76.png diff --git a/core/res/res/drawable-ldpi/spinner_dropdown_background_down.9.png b/core/res/res/drawable-ldpi/spinner_dropdown_background_down.9.png Binary files differnew file mode 100644 index 000000000000..f9c4610b059d --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_dropdown_background_down.9.png diff --git a/core/res/res/drawable-ldpi/spinner_dropdown_background_up.9.png b/core/res/res/drawable-ldpi/spinner_dropdown_background_up.9.png Binary files differnew file mode 100644 index 000000000000..f458ad4ee6b8 --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_dropdown_background_up.9.png diff --git a/core/res/res/drawable-ldpi/spinner_normal.9.png b/core/res/res/drawable-ldpi/spinner_normal.9.png Binary files differnew file mode 100644 index 000000000000..151c2e6a210d --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_normal.9.png diff --git a/core/res/res/drawable-ldpi/spinner_press.9.png b/core/res/res/drawable-ldpi/spinner_press.9.png Binary files differnew file mode 100644 index 000000000000..f3be1fc59133 --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_press.9.png diff --git a/core/res/res/drawable-ldpi/spinner_select.9.png b/core/res/res/drawable-ldpi/spinner_select.9.png Binary files differnew file mode 100644 index 000000000000..092168b5d832 --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_select.9.png diff --git a/core/res/res/drawable-ldpi/spinner_white_16.png b/core/res/res/drawable-ldpi/spinner_white_16.png Binary files differnew file mode 100644 index 000000000000..0ad9eb087b7f --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_white_16.png diff --git a/core/res/res/drawable-ldpi/spinner_white_48.png b/core/res/res/drawable-ldpi/spinner_white_48.png Binary files differnew file mode 100644 index 000000000000..f0f0827b84af --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_white_48.png diff --git a/core/res/res/drawable-ldpi/spinner_white_76.png b/core/res/res/drawable-ldpi/spinner_white_76.png Binary files differnew file mode 100644 index 000000000000..8be8f26de26f --- /dev/null +++ b/core/res/res/drawable-ldpi/spinner_white_76.png diff --git a/core/res/res/drawable-ldpi/star_big_off.png b/core/res/res/drawable-ldpi/star_big_off.png Binary files differnew file mode 100644 index 000000000000..d91c3a44cd24 --- /dev/null +++ b/core/res/res/drawable-ldpi/star_big_off.png diff --git a/core/res/res/drawable-ldpi/star_big_on.png b/core/res/res/drawable-ldpi/star_big_on.png Binary files differnew file mode 100644 index 000000000000..69d92a229db6 --- /dev/null +++ b/core/res/res/drawable-ldpi/star_big_on.png diff --git a/core/res/res/drawable-ldpi/star_off.png b/core/res/res/drawable-ldpi/star_off.png Binary files differnew file mode 100644 index 000000000000..6bc28fcee973 --- /dev/null +++ b/core/res/res/drawable-ldpi/star_off.png diff --git a/core/res/res/drawable-ldpi/star_on.png b/core/res/res/drawable-ldpi/star_on.png Binary files differnew file mode 100644 index 000000000000..d2e38455bee3 --- /dev/null +++ b/core/res/res/drawable-ldpi/star_on.png diff --git a/core/res/res/drawable-ldpi/stat_ecb_mode.png b/core/res/res/drawable-ldpi/stat_ecb_mode.png Binary files differnew file mode 100644 index 000000000000..a17d7dbf2000 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_ecb_mode.png diff --git a/core/res/res/drawable-ldpi/stat_notify_call_mute.png b/core/res/res/drawable-ldpi/stat_notify_call_mute.png Binary files differnew file mode 100644 index 000000000000..d1600097bd96 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_call_mute.png diff --git a/core/res/res/drawable-ldpi/stat_notify_car_mode.png b/core/res/res/drawable-ldpi/stat_notify_car_mode.png Binary files differnew file mode 100644 index 000000000000..22e90aef1cd2 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_car_mode.png diff --git a/core/res/res/drawable-ldpi/stat_notify_chat.png b/core/res/res/drawable-ldpi/stat_notify_chat.png Binary files differnew file mode 100644 index 000000000000..562fbcc2b430 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_chat.png diff --git a/core/res/res/drawable-ldpi/stat_notify_disk_full.png b/core/res/res/drawable-ldpi/stat_notify_disk_full.png Binary files differnew file mode 100644 index 000000000000..c329486f6612 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_disk_full.png diff --git a/core/res/res/drawable-ldpi/stat_notify_email_generic.png b/core/res/res/drawable-ldpi/stat_notify_email_generic.png Binary files differnew file mode 100644 index 000000000000..352267c06e4b --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_email_generic.png diff --git a/core/res/res/drawable-ldpi/stat_notify_error.png b/core/res/res/drawable-ldpi/stat_notify_error.png Binary files differnew file mode 100644 index 000000000000..a2eab9b8cfb3 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_error.png diff --git a/core/res/res/drawable-ldpi/stat_notify_gmail.png b/core/res/res/drawable-ldpi/stat_notify_gmail.png Binary files differnew file mode 100644 index 000000000000..8fbfd00a8b69 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_gmail.png diff --git a/core/res/res/drawable-ldpi/stat_notify_missed_call.png b/core/res/res/drawable-ldpi/stat_notify_missed_call.png Binary files differnew file mode 100644 index 000000000000..4c01206df673 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_missed_call.png diff --git a/core/res/res/drawable-ldpi/stat_notify_more.png b/core/res/res/drawable-ldpi/stat_notify_more.png Binary files differnew file mode 100644 index 000000000000..a51341de2f33 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_more.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sdcard.png b/core/res/res/drawable-ldpi/stat_notify_sdcard.png Binary files differnew file mode 100644 index 000000000000..265fd8fe02a3 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_sdcard.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sdcard_prepare.png b/core/res/res/drawable-ldpi/stat_notify_sdcard_prepare.png Binary files differnew file mode 100644 index 000000000000..84cb224e14ba --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_sdcard_prepare.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sdcard_usb.png b/core/res/res/drawable-ldpi/stat_notify_sdcard_usb.png Binary files differnew file mode 100644 index 000000000000..cb7022b9aead --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_sdcard_usb.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sim_toolkit.png b/core/res/res/drawable-ldpi/stat_notify_sim_toolkit.png Binary files differnew file mode 100644 index 000000000000..d9a62a955c38 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_sim_toolkit.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sync.png b/core/res/res/drawable-ldpi/stat_notify_sync.png Binary files differnew file mode 100644 index 000000000000..dd63030b694b --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_sync.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sync_anim0.png b/core/res/res/drawable-ldpi/stat_notify_sync_anim0.png Binary files differnew file mode 100644 index 000000000000..9aa4edf52eab --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_sync_anim0.png diff --git a/core/res/res/drawable-ldpi/stat_notify_sync_error.png b/core/res/res/drawable-ldpi/stat_notify_sync_error.png Binary files differnew file mode 100644 index 000000000000..431a86fa63ec --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_sync_error.png diff --git a/core/res/res/drawable-ldpi/stat_notify_voicemail.png b/core/res/res/drawable-ldpi/stat_notify_voicemail.png Binary files differnew file mode 100644 index 000000000000..36d61a422fef --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_voicemail.png diff --git a/core/res/res/drawable-ldpi/stat_notify_wifi_in_range.png b/core/res/res/drawable-ldpi/stat_notify_wifi_in_range.png Binary files differnew file mode 100644 index 000000000000..1ff50ea31b6d --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_notify_wifi_in_range.png diff --git a/core/res/res/drawable-ldpi/stat_sys_adb.png b/core/res/res/drawable-ldpi/stat_sys_adb.png Binary files differnew file mode 100644 index 000000000000..cdead240aab5 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_adb.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_0.png b/core/res/res/drawable-ldpi/stat_sys_battery_0.png Binary files differnew file mode 100644 index 000000000000..b692c7a47254 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_10.png b/core/res/res/drawable-ldpi/stat_sys_battery_10.png Binary files differnew file mode 100644 index 000000000000..5e7efd10645e --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_10.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_100.png b/core/res/res/drawable-ldpi/stat_sys_battery_100.png Binary files differnew file mode 100644 index 000000000000..7023ea7b420c --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_100.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_20.png b/core/res/res/drawable-ldpi/stat_sys_battery_20.png Binary files differnew file mode 100644 index 000000000000..275ebbb1ba30 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_20.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_40.png b/core/res/res/drawable-ldpi/stat_sys_battery_40.png Binary files differnew file mode 100644 index 000000000000..6a46fe096dcc --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_40.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_60.png b/core/res/res/drawable-ldpi/stat_sys_battery_60.png Binary files differnew file mode 100644 index 000000000000..f94115a01e44 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_60.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_80.png b/core/res/res/drawable-ldpi/stat_sys_battery_80.png Binary files differnew file mode 100644 index 000000000000..8b07df923adb --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_80.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim0.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim0.png Binary files differnew file mode 100644 index 000000000000..7c4a783c3c8e --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim1.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim1.png Binary files differnew file mode 100644 index 000000000000..9eea8ae94442 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim1.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim2.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim2.png Binary files differnew file mode 100644 index 000000000000..112c8696438d --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim2.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim3.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim3.png Binary files differnew file mode 100644 index 000000000000..7b5c08b36dec --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim3.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim4.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim4.png Binary files differnew file mode 100644 index 000000000000..ddda4ad6db7d --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim4.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim5.png b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim5.png Binary files differnew file mode 100644 index 000000000000..52050b2f832c --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_charge_anim5.png diff --git a/core/res/res/drawable-ldpi/stat_sys_battery_unknown.png b/core/res/res/drawable-ldpi/stat_sys_battery_unknown.png Binary files differnew file mode 100644 index 000000000000..e095aa4249fd --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_battery_unknown.png diff --git a/core/res/res/drawable-ldpi/stat_sys_data_bluetooth.png b/core/res/res/drawable-ldpi/stat_sys_data_bluetooth.png Binary files differnew file mode 100644 index 000000000000..2ae3355dab7f --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_data_bluetooth.png diff --git a/core/res/res/drawable-ldpi/stat_sys_data_usb.png b/core/res/res/drawable-ldpi/stat_sys_data_usb.png Binary files differnew file mode 100644 index 000000000000..ffaccbde6952 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_data_usb.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim0.png b/core/res/res/drawable-ldpi/stat_sys_download_anim0.png Binary files differnew file mode 100644 index 000000000000..12c0e213bd0c --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim1.png b/core/res/res/drawable-ldpi/stat_sys_download_anim1.png Binary files differnew file mode 100644 index 000000000000..f5ec4ac7bac7 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim1.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim2.png b/core/res/res/drawable-ldpi/stat_sys_download_anim2.png Binary files differnew file mode 100644 index 000000000000..4900ebd24ea3 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim2.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim3.png b/core/res/res/drawable-ldpi/stat_sys_download_anim3.png Binary files differnew file mode 100644 index 000000000000..aff9ebd09acc --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim3.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim4.png b/core/res/res/drawable-ldpi/stat_sys_download_anim4.png Binary files differnew file mode 100644 index 000000000000..2eb65db271b5 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim4.png diff --git a/core/res/res/drawable-ldpi/stat_sys_download_anim5.png b/core/res/res/drawable-ldpi/stat_sys_download_anim5.png Binary files differnew file mode 100644 index 000000000000..a9f2448a6935 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_download_anim5.png diff --git a/core/res/res/drawable-ldpi/stat_sys_gps_on.png b/core/res/res/drawable-ldpi/stat_sys_gps_on.png Binary files differnew file mode 100644 index 000000000000..8915c59ae7b5 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_gps_on.png diff --git a/core/res/res/drawable-ldpi/stat_sys_headset.png b/core/res/res/drawable-ldpi/stat_sys_headset.png Binary files differnew file mode 100644 index 000000000000..8f143a3638a9 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_headset.png diff --git a/core/res/res/drawable-ldpi/stat_sys_phone_call.png b/core/res/res/drawable-ldpi/stat_sys_phone_call.png Binary files differnew file mode 100644 index 000000000000..275bef2abb8e --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_phone_call.png diff --git a/core/res/res/drawable-ldpi/stat_sys_phone_call_forward.png b/core/res/res/drawable-ldpi/stat_sys_phone_call_forward.png Binary files differnew file mode 100644 index 000000000000..bb07c6916a88 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_phone_call_forward.png diff --git a/core/res/res/drawable-ldpi/stat_sys_phone_call_on_hold.png b/core/res/res/drawable-ldpi/stat_sys_phone_call_on_hold.png Binary files differnew file mode 100644 index 000000000000..b03816ab2da8 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_phone_call_on_hold.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_0_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_0_cdma.png Binary files differnew file mode 100644 index 000000000000..2c4ff0678960 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_0_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_1_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_1_cdma.png Binary files differnew file mode 100644 index 000000000000..82626ac1fb4c --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_1_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_2_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_2_cdma.png Binary files differnew file mode 100644 index 000000000000..96304b15bbe2 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_2_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_3_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_3_cdma.png Binary files differnew file mode 100644 index 000000000000..9a3f2309d85f --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_3_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_r_signal_4_cdma.png b/core/res/res/drawable-ldpi/stat_sys_r_signal_4_cdma.png Binary files differnew file mode 100644 index 000000000000..5a607ee98474 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_r_signal_4_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_0_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_0_cdma.png Binary files differnew file mode 100644 index 000000000000..0db564b0d403 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_0_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_1_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_1_cdma.png Binary files differnew file mode 100644 index 000000000000..ca697db30d4f --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_1_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_2_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_2_cdma.png Binary files differnew file mode 100644 index 000000000000..816aaaa45cde --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_2_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_3_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_3_cdma.png Binary files differnew file mode 100644 index 000000000000..ebb103c050e7 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_3_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_ra_signal_4_cdma.png b/core/res/res/drawable-ldpi/stat_sys_ra_signal_4_cdma.png Binary files differnew file mode 100644 index 000000000000..f21120157b7d --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_ra_signal_4_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_secure.png b/core/res/res/drawable-ldpi/stat_sys_secure.png Binary files differnew file mode 100644 index 000000000000..096aa95cb235 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_secure.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_0_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_0_cdma.png Binary files differnew file mode 100644 index 000000000000..dabba9c8b505 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_0_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_1_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_1_cdma.png Binary files differnew file mode 100644 index 000000000000..5d99b4544237 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_1_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_2_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_2_cdma.png Binary files differnew file mode 100644 index 000000000000..f68f836e7662 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_2_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_3_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_3_cdma.png Binary files differnew file mode 100644 index 000000000000..370b91f2c29a --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_3_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_4_cdma.png b/core/res/res/drawable-ldpi/stat_sys_signal_4_cdma.png Binary files differnew file mode 100644 index 000000000000..e8b4d389a06e --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_4_cdma.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_0.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_0.png Binary files differnew file mode 100644 index 000000000000..2b360c21e72c --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_1.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_1.png Binary files differnew file mode 100644 index 000000000000..dfcd1f73a571 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_1.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_2.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_2.png Binary files differnew file mode 100644 index 000000000000..b8a5bdac9ead --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_2.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_3.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_3.png Binary files differnew file mode 100644 index 000000000000..65c76d323f94 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_3.png diff --git a/core/res/res/drawable-ldpi/stat_sys_signal_evdo_4.png b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_4.png Binary files differnew file mode 100644 index 000000000000..974f936457bd --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_signal_evdo_4.png diff --git a/core/res/res/drawable-ldpi/stat_sys_speakerphone.png b/core/res/res/drawable-ldpi/stat_sys_speakerphone.png Binary files differnew file mode 100644 index 000000000000..7fc67a043bb1 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_speakerphone.png diff --git a/core/res/res/drawable-ldpi/stat_sys_tether_bluetooth.png b/core/res/res/drawable-ldpi/stat_sys_tether_bluetooth.png Binary files differnew file mode 100644 index 000000000000..ffe8e8c98232 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_tether_bluetooth.png diff --git a/core/res/res/drawable-ldpi/stat_sys_tether_general.png b/core/res/res/drawable-ldpi/stat_sys_tether_general.png Binary files differnew file mode 100644 index 000000000000..ca20f7352090 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_tether_general.png diff --git a/core/res/res/drawable-ldpi/stat_sys_tether_usb.png b/core/res/res/drawable-ldpi/stat_sys_tether_usb.png Binary files differnew file mode 100644 index 000000000000..65e907565ec1 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_tether_usb.png diff --git a/core/res/res/drawable-ldpi/stat_sys_tether_wifi.png b/core/res/res/drawable-ldpi/stat_sys_tether_wifi.png Binary files differnew file mode 100644 index 000000000000..b4b3cfd4be03 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_tether_wifi.png diff --git a/core/res/res/drawable-ldpi/stat_sys_throttled.png b/core/res/res/drawable-ldpi/stat_sys_throttled.png Binary files differnew file mode 100644 index 000000000000..cfeb3b65a52d --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_throttled.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim0.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim0.png Binary files differnew file mode 100644 index 000000000000..29f90824b911 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim0.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim1.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim1.png Binary files differnew file mode 100644 index 000000000000..bd1b72a051da --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim1.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim2.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim2.png Binary files differnew file mode 100644 index 000000000000..e49d23b30ae9 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim2.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim3.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim3.png Binary files differnew file mode 100644 index 000000000000..64525ac024cb --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim3.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim4.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim4.png Binary files differnew file mode 100644 index 000000000000..20f8f59b1b48 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim4.png diff --git a/core/res/res/drawable-ldpi/stat_sys_upload_anim5.png b/core/res/res/drawable-ldpi/stat_sys_upload_anim5.png Binary files differnew file mode 100644 index 000000000000..0f482df571b8 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_upload_anim5.png diff --git a/core/res/res/drawable-ldpi/stat_sys_vp_phone_call.png b/core/res/res/drawable-ldpi/stat_sys_vp_phone_call.png Binary files differnew file mode 100644 index 000000000000..504d7a55078c --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_vp_phone_call.png diff --git a/core/res/res/drawable-ldpi/stat_sys_vp_phone_call_on_hold.png b/core/res/res/drawable-ldpi/stat_sys_vp_phone_call_on_hold.png Binary files differnew file mode 100644 index 000000000000..edeef2b795fd --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_vp_phone_call_on_hold.png diff --git a/core/res/res/drawable-ldpi/stat_sys_warning.png b/core/res/res/drawable-ldpi/stat_sys_warning.png Binary files differnew file mode 100644 index 000000000000..289c6a00dfd5 --- /dev/null +++ b/core/res/res/drawable-ldpi/stat_sys_warning.png diff --git a/core/res/res/drawable-ldpi/status_bar_background.png b/core/res/res/drawable-ldpi/status_bar_background.png Binary files differnew file mode 100644 index 000000000000..7881bcecae07 --- /dev/null +++ b/core/res/res/drawable-ldpi/status_bar_background.png diff --git a/core/res/res/drawable-ldpi/status_bar_header_background.9.png b/core/res/res/drawable-ldpi/status_bar_header_background.9.png Binary files differnew file mode 100644 index 000000000000..74dddb932a77 --- /dev/null +++ b/core/res/res/drawable-ldpi/status_bar_header_background.9.png diff --git a/core/res/res/drawable-ldpi/status_bar_item_app_background_normal.9.png b/core/res/res/drawable-ldpi/status_bar_item_app_background_normal.9.png Binary files differnew file mode 100644 index 000000000000..f8cfe2c65396 --- /dev/null +++ b/core/res/res/drawable-ldpi/status_bar_item_app_background_normal.9.png diff --git a/core/res/res/drawable-ldpi/status_bar_item_background_focus.9.png b/core/res/res/drawable-ldpi/status_bar_item_background_focus.9.png Binary files differnew file mode 100644 index 000000000000..07cd873ddfc0 --- /dev/null +++ b/core/res/res/drawable-ldpi/status_bar_item_background_focus.9.png diff --git a/core/res/res/drawable-ldpi/status_bar_item_background_normal.9.png b/core/res/res/drawable-ldpi/status_bar_item_background_normal.9.png Binary files differnew file mode 100644 index 000000000000..e07f77449044 --- /dev/null +++ b/core/res/res/drawable-ldpi/status_bar_item_background_normal.9.png diff --git a/core/res/res/drawable-ldpi/status_bar_item_background_pressed.9.png b/core/res/res/drawable-ldpi/status_bar_item_background_pressed.9.png Binary files differnew file mode 100644 index 000000000000..aea2f5f9d245 --- /dev/null +++ b/core/res/res/drawable-ldpi/status_bar_item_background_pressed.9.png diff --git a/core/res/res/drawable-ldpi/submenu_arrow_nofocus.png b/core/res/res/drawable-ldpi/submenu_arrow_nofocus.png Binary files differnew file mode 100644 index 000000000000..ce30b58b6ef1 --- /dev/null +++ b/core/res/res/drawable-ldpi/submenu_arrow_nofocus.png diff --git a/core/res/res/drawable-ldpi/sym_action_add.png b/core/res/res/drawable-ldpi/sym_action_add.png Binary files differnew file mode 100644 index 000000000000..7afaeded1161 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_action_add.png diff --git a/core/res/res/drawable-ldpi/sym_action_call.png b/core/res/res/drawable-ldpi/sym_action_call.png Binary files differnew file mode 100644 index 000000000000..190572def8ea --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_action_call.png diff --git a/core/res/res/drawable-ldpi/sym_action_chat.png b/core/res/res/drawable-ldpi/sym_action_chat.png Binary files differnew file mode 100644 index 000000000000..4eeb59b76db5 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_action_chat.png diff --git a/core/res/res/drawable-ldpi/sym_action_email.png b/core/res/res/drawable-ldpi/sym_action_email.png Binary files differnew file mode 100644 index 000000000000..47dc63aa67d0 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_action_email.png diff --git a/core/res/res/drawable-ldpi/sym_app_on_sd_unavailable_icon.png b/core/res/res/drawable-ldpi/sym_app_on_sd_unavailable_icon.png Binary files differnew file mode 100644 index 000000000000..d88250ae2325 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_app_on_sd_unavailable_icon.png diff --git a/core/res/res/drawable-ldpi/sym_call_incoming.png b/core/res/res/drawable-ldpi/sym_call_incoming.png Binary files differnew file mode 100644 index 000000000000..ec609c635305 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_call_incoming.png diff --git a/core/res/res/drawable-ldpi/sym_call_missed.png b/core/res/res/drawable-ldpi/sym_call_missed.png Binary files differnew file mode 100644 index 000000000000..8bad634e4383 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_call_missed.png diff --git a/core/res/res/drawable-ldpi/sym_call_outgoing.png b/core/res/res/drawable-ldpi/sym_call_outgoing.png Binary files differnew file mode 100644 index 000000000000..362df01e6800 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_call_outgoing.png diff --git a/core/res/res/drawable-ldpi/sym_contact_card.png b/core/res/res/drawable-ldpi/sym_contact_card.png Binary files differnew file mode 100644 index 000000000000..8ffd06e6bebe --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_contact_card.png diff --git a/core/res/res/drawable-ldpi/sym_def_app_icon.png b/core/res/res/drawable-ldpi/sym_def_app_icon.png Binary files differnew file mode 100644 index 000000000000..2c205c84ab4f --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_def_app_icon.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_delete.png b/core/res/res/drawable-ldpi/sym_keyboard_delete.png Binary files differnew file mode 100644 index 000000000000..d9d56539137a --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_delete.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_delete_dim.png b/core/res/res/drawable-ldpi/sym_keyboard_delete_dim.png Binary files differnew file mode 100644 index 000000000000..d7d9385f5637 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_delete_dim.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_delete.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_delete.png Binary files differnew file mode 100644 index 000000000000..8922bf92c467 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_delete.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_ok.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_ok.png Binary files differnew file mode 100644 index 000000000000..304141b5f589 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_ok.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_return.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_return.png Binary files differnew file mode 100644 index 000000000000..c5f3247524d6 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_return.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift.png Binary files differnew file mode 100644 index 000000000000..a7bf565a606e --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift_locked.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift_locked.png Binary files differnew file mode 100644 index 000000000000..114abacc3915 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_shift_locked.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_feedback_space.png b/core/res/res/drawable-ldpi/sym_keyboard_feedback_space.png Binary files differnew file mode 100644 index 000000000000..5d5297007bfd --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_feedback_space.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num0_no_plus.png b/core/res/res/drawable-ldpi/sym_keyboard_num0_no_plus.png Binary files differnew file mode 100644 index 000000000000..eb4764d44208 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num0_no_plus.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num1.png b/core/res/res/drawable-ldpi/sym_keyboard_num1.png Binary files differnew file mode 100644 index 000000000000..1339b6d2fd91 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num1.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num2.png b/core/res/res/drawable-ldpi/sym_keyboard_num2.png Binary files differnew file mode 100644 index 000000000000..bd2379dae146 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num2.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num3.png b/core/res/res/drawable-ldpi/sym_keyboard_num3.png Binary files differnew file mode 100644 index 000000000000..43e8b150771f --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num3.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num4.png b/core/res/res/drawable-ldpi/sym_keyboard_num4.png Binary files differnew file mode 100644 index 000000000000..70d4f78eb11b --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num4.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num5.png b/core/res/res/drawable-ldpi/sym_keyboard_num5.png Binary files differnew file mode 100644 index 000000000000..5acda285103c --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num5.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num6.png b/core/res/res/drawable-ldpi/sym_keyboard_num6.png Binary files differnew file mode 100644 index 000000000000..950600b0ee23 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num6.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num7.png b/core/res/res/drawable-ldpi/sym_keyboard_num7.png Binary files differnew file mode 100644 index 000000000000..caea4bb9e55b --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num7.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num8.png b/core/res/res/drawable-ldpi/sym_keyboard_num8.png Binary files differnew file mode 100644 index 000000000000..b528fc7b2c06 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num8.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_num9.png b/core/res/res/drawable-ldpi/sym_keyboard_num9.png Binary files differnew file mode 100644 index 000000000000..1835e21de102 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_num9.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_ok.png b/core/res/res/drawable-ldpi/sym_keyboard_ok.png Binary files differnew file mode 100644 index 000000000000..70bffc1cdf32 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_ok.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_ok_dim.png b/core/res/res/drawable-ldpi/sym_keyboard_ok_dim.png Binary files differnew file mode 100644 index 000000000000..01cf616b0915 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_ok_dim.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_return.png b/core/res/res/drawable-ldpi/sym_keyboard_return.png Binary files differnew file mode 100644 index 000000000000..1c7c58d5dcd6 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_return.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_shift.png b/core/res/res/drawable-ldpi/sym_keyboard_shift.png Binary files differnew file mode 100644 index 000000000000..382a08f0fc86 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_shift.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_shift_locked.png b/core/res/res/drawable-ldpi/sym_keyboard_shift_locked.png Binary files differnew file mode 100644 index 000000000000..c644eff80c5a --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_shift_locked.png diff --git a/core/res/res/drawable-ldpi/sym_keyboard_space.png b/core/res/res/drawable-ldpi/sym_keyboard_space.png Binary files differnew file mode 100644 index 000000000000..0b91646ec2d1 --- /dev/null +++ b/core/res/res/drawable-ldpi/sym_keyboard_space.png diff --git a/core/res/res/drawable-ldpi/tab_focus.9.png b/core/res/res/drawable-ldpi/tab_focus.9.png Binary files differnew file mode 100644 index 000000000000..59a0b659da12 --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_focus.9.png diff --git a/core/res/res/drawable-ldpi/tab_focus_bar_left.9.png b/core/res/res/drawable-ldpi/tab_focus_bar_left.9.png Binary files differnew file mode 100755 index 000000000000..0ee834739fec --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_focus_bar_left.9.png diff --git a/core/res/res/drawable-ldpi/tab_focus_bar_right.9.png b/core/res/res/drawable-ldpi/tab_focus_bar_right.9.png Binary files differnew file mode 100755 index 000000000000..0ee834739fec --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_focus_bar_right.9.png diff --git a/core/res/res/drawable-ldpi/tab_press.9.png b/core/res/res/drawable-ldpi/tab_press.9.png Binary files differnew file mode 100644 index 000000000000..ba9c82dfa812 --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_press.9.png diff --git a/core/res/res/drawable-ldpi/tab_press_bar_left.9.png b/core/res/res/drawable-ldpi/tab_press_bar_left.9.png Binary files differnew file mode 100755 index 000000000000..ee129ba19f2c --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_press_bar_left.9.png diff --git a/core/res/res/drawable-ldpi/tab_press_bar_right.9.png b/core/res/res/drawable-ldpi/tab_press_bar_right.9.png Binary files differnew file mode 100755 index 000000000000..ee129ba19f2c --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_press_bar_right.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected.9.png b/core/res/res/drawable-ldpi/tab_selected.9.png Binary files differnew file mode 100644 index 000000000000..318f09fa1314 --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_selected.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_bar_left.9.png b/core/res/res/drawable-ldpi/tab_selected_bar_left.9.png Binary files differnew file mode 100755 index 000000000000..03bcc13b37d7 --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_selected_bar_left.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_bar_left_v4.9.png b/core/res/res/drawable-ldpi/tab_selected_bar_left_v4.9.png Binary files differnew file mode 100644 index 000000000000..e7a07255d79c --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_selected_bar_left_v4.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_bar_right.9.png b/core/res/res/drawable-ldpi/tab_selected_bar_right.9.png Binary files differnew file mode 100755 index 000000000000..f2284454b199 --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_selected_bar_right.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_bar_right_v4.9.png b/core/res/res/drawable-ldpi/tab_selected_bar_right_v4.9.png Binary files differnew file mode 100644 index 000000000000..e7a07255d79c --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_selected_bar_right_v4.9.png diff --git a/core/res/res/drawable-ldpi/tab_selected_v4.9.png b/core/res/res/drawable-ldpi/tab_selected_v4.9.png Binary files differnew file mode 100644 index 000000000000..2ad1757f9c1d --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_selected_v4.9.png diff --git a/core/res/res/drawable-ldpi/tab_unselected.9.png b/core/res/res/drawable-ldpi/tab_unselected.9.png Binary files differnew file mode 100644 index 000000000000..de7c467c4458 --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_unselected.9.png diff --git a/core/res/res/drawable-ldpi/tab_unselected_v4.9.png b/core/res/res/drawable-ldpi/tab_unselected_v4.9.png Binary files differnew file mode 100644 index 000000000000..61d4ef0206f3 --- /dev/null +++ b/core/res/res/drawable-ldpi/tab_unselected_v4.9.png diff --git a/core/res/res/drawable-ldpi/text_select_handle_left.png b/core/res/res/drawable-ldpi/text_select_handle_left.png Binary files differnew file mode 100644 index 000000000000..bded42cc9639 --- /dev/null +++ b/core/res/res/drawable-ldpi/text_select_handle_left.png diff --git a/core/res/res/drawable-ldpi/text_select_handle_middle.png b/core/res/res/drawable-ldpi/text_select_handle_middle.png Binary files differnew file mode 100644 index 000000000000..c1d8d17da717 --- /dev/null +++ b/core/res/res/drawable-ldpi/text_select_handle_middle.png diff --git a/core/res/res/drawable-ldpi/text_select_handle_right.png b/core/res/res/drawable-ldpi/text_select_handle_right.png Binary files differnew file mode 100644 index 000000000000..aae0b4076551 --- /dev/null +++ b/core/res/res/drawable-ldpi/text_select_handle_right.png diff --git a/core/res/res/drawable-ldpi/textfield_default.9.png b/core/res/res/drawable-ldpi/textfield_default.9.png Binary files differnew file mode 100644 index 000000000000..4cfa745fbb4a --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_default.9.png diff --git a/core/res/res/drawable-ldpi/textfield_disabled.9.png b/core/res/res/drawable-ldpi/textfield_disabled.9.png Binary files differnew file mode 100644 index 000000000000..e54bf300a3a8 --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_disabled.9.png diff --git a/core/res/res/drawable-ldpi/textfield_disabled_selected.9.png b/core/res/res/drawable-ldpi/textfield_disabled_selected.9.png Binary files differnew file mode 100644 index 000000000000..02f6b5e1d7f3 --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_disabled_selected.9.png diff --git a/core/res/res/drawable-ldpi/textfield_pressed.9.png b/core/res/res/drawable-ldpi/textfield_pressed.9.png Binary files differnew file mode 100644 index 000000000000..1433365208b2 --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_pressed.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_default.9.png b/core/res/res/drawable-ldpi/textfield_search_default.9.png Binary files differnew file mode 100644 index 000000000000..dfb3f7a6cd5c --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_search_default.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_empty_default.9.png b/core/res/res/drawable-ldpi/textfield_search_empty_default.9.png Binary files differnew file mode 100644 index 000000000000..65fbe33bba49 --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_search_empty_default.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_empty_pressed.9.png b/core/res/res/drawable-ldpi/textfield_search_empty_pressed.9.png Binary files differnew file mode 100644 index 000000000000..2a72142c996b --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_search_empty_pressed.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_empty_selected.9.png b/core/res/res/drawable-ldpi/textfield_search_empty_selected.9.png Binary files differnew file mode 100644 index 000000000000..162c1789a43f --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_search_empty_selected.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_pressed.9.png b/core/res/res/drawable-ldpi/textfield_search_pressed.9.png Binary files differnew file mode 100644 index 000000000000..b414f6ceeffe --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_search_pressed.9.png diff --git a/core/res/res/drawable-ldpi/textfield_search_selected.9.png b/core/res/res/drawable-ldpi/textfield_search_selected.9.png Binary files differnew file mode 100644 index 000000000000..d6e6a44d94ac --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_search_selected.9.png diff --git a/core/res/res/drawable-ldpi/textfield_selected.9.png b/core/res/res/drawable-ldpi/textfield_selected.9.png Binary files differnew file mode 100644 index 000000000000..80a6f3995e04 --- /dev/null +++ b/core/res/res/drawable-ldpi/textfield_selected.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_down_disabled.9.png b/core/res/res/drawable-ldpi/timepicker_down_disabled.9.png Binary files differnew file mode 100644 index 000000000000..a4c2abab06ba --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_down_disabled.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_down_disabled_focused.9.png b/core/res/res/drawable-ldpi/timepicker_down_disabled_focused.9.png Binary files differnew file mode 100644 index 000000000000..fdbc9d578933 --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_down_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_down_normal.9.png b/core/res/res/drawable-ldpi/timepicker_down_normal.9.png Binary files differnew file mode 100644 index 000000000000..c7e80188dc6d --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_down_normal.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_down_pressed.9.png b/core/res/res/drawable-ldpi/timepicker_down_pressed.9.png Binary files differnew file mode 100644 index 000000000000..4dd82aea24a0 --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_down_pressed.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_down_selected.9.png b/core/res/res/drawable-ldpi/timepicker_down_selected.9.png Binary files differnew file mode 100644 index 000000000000..ebb701ecd8c8 --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_down_selected.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_input_disabled.9.png b/core/res/res/drawable-ldpi/timepicker_input_disabled.9.png Binary files differnew file mode 100644 index 000000000000..39cc3d4aa7bd --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_input_disabled.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_input_normal.9.png b/core/res/res/drawable-ldpi/timepicker_input_normal.9.png Binary files differnew file mode 100644 index 000000000000..6ffabe6cb283 --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_input_normal.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_input_pressed.9.png b/core/res/res/drawable-ldpi/timepicker_input_pressed.9.png Binary files differnew file mode 100644 index 000000000000..9cfaaab02700 --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_input_pressed.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_input_selected.9.png b/core/res/res/drawable-ldpi/timepicker_input_selected.9.png Binary files differnew file mode 100644 index 000000000000..e819e9b43a25 --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_input_selected.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_up_disabled.9.png b/core/res/res/drawable-ldpi/timepicker_up_disabled.9.png Binary files differnew file mode 100644 index 000000000000..005a5ae1795a --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_up_disabled.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_up_disabled_focused.9.png b/core/res/res/drawable-ldpi/timepicker_up_disabled_focused.9.png Binary files differnew file mode 100644 index 000000000000..f1c94655d4a8 --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_up_disabled_focused.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_up_normal.9.png b/core/res/res/drawable-ldpi/timepicker_up_normal.9.png Binary files differnew file mode 100644 index 000000000000..99275397569d --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_up_normal.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_up_pressed.9.png b/core/res/res/drawable-ldpi/timepicker_up_pressed.9.png Binary files differnew file mode 100644 index 000000000000..7946450a27a1 --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_up_pressed.9.png diff --git a/core/res/res/drawable-ldpi/timepicker_up_selected.9.png b/core/res/res/drawable-ldpi/timepicker_up_selected.9.png Binary files differnew file mode 100644 index 000000000000..8c8136a4d16c --- /dev/null +++ b/core/res/res/drawable-ldpi/timepicker_up_selected.9.png diff --git a/core/res/res/drawable-ldpi/title_bar_medium.9.png b/core/res/res/drawable-ldpi/title_bar_medium.9.png Binary files differnew file mode 100644 index 000000000000..ab95aad3a9f6 --- /dev/null +++ b/core/res/res/drawable-ldpi/title_bar_medium.9.png diff --git a/core/res/res/drawable-ldpi/title_bar_portrait.9.png b/core/res/res/drawable-ldpi/title_bar_portrait.9.png Binary files differnew file mode 100644 index 000000000000..6f868db27b8c --- /dev/null +++ b/core/res/res/drawable-ldpi/title_bar_portrait.9.png diff --git a/core/res/res/drawable-ldpi/title_bar_shadow.9.png b/core/res/res/drawable-ldpi/title_bar_shadow.9.png Binary files differnew file mode 100644 index 000000000000..fc45ee82c1d6 --- /dev/null +++ b/core/res/res/drawable-ldpi/title_bar_shadow.9.png diff --git a/core/res/res/drawable-ldpi/title_bar_tall.9.png b/core/res/res/drawable-ldpi/title_bar_tall.9.png Binary files differnew file mode 100644 index 000000000000..b4729b75aa2a --- /dev/null +++ b/core/res/res/drawable-ldpi/title_bar_tall.9.png diff --git a/core/res/res/drawable-ldpi/toast_frame.9.png b/core/res/res/drawable-ldpi/toast_frame.9.png Binary files differnew file mode 100644 index 000000000000..3b344ff372eb --- /dev/null +++ b/core/res/res/drawable-ldpi/toast_frame.9.png diff --git a/core/res/res/drawable-ldpi/unknown_image.png b/core/res/res/drawable-ldpi/unknown_image.png Binary files differnew file mode 100644 index 000000000000..c6255baa4431 --- /dev/null +++ b/core/res/res/drawable-ldpi/unknown_image.png diff --git a/core/res/res/drawable-ldpi/usb_android.png b/core/res/res/drawable-ldpi/usb_android.png Binary files differnew file mode 100644 index 000000000000..d7b1d93f9d2c --- /dev/null +++ b/core/res/res/drawable-ldpi/usb_android.png diff --git a/core/res/res/drawable-ldpi/usb_android_connected.png b/core/res/res/drawable-ldpi/usb_android_connected.png Binary files differnew file mode 100644 index 000000000000..c9d8439463b8 --- /dev/null +++ b/core/res/res/drawable-ldpi/usb_android_connected.png diff --git a/core/res/res/drawable-ldpi/zoom_plate.9.png b/core/res/res/drawable-ldpi/zoom_plate.9.png Binary files differnew file mode 100644 index 000000000000..5e34e7a60630 --- /dev/null +++ b/core/res/res/drawable-ldpi/zoom_plate.9.png diff --git a/docs/html/guide/guide_toc.cs b/docs/html/guide/guide_toc.cs index a43e33474087..9c0fcffc4bd2 100644 --- a/docs/html/guide/guide_toc.cs +++ b/docs/html/guide/guide_toc.cs @@ -515,18 +515,21 @@ <h2><span class="en">Web Applications</span> </h2> <ul> - <li><a href="<?cs var:toroot ?>guide/webapps/targetting.html"> - <span class="en">Targetting Android Devices</span> - </a> <span class="new">new!</span><!-- 10/8/10 --></li> + <li><a href="<?cs var:toroot ?>guide/webapps/index.html"> + <span class="en">Web Apps Overview</span> + </a> <span class="new">new!</span><!-- 11/1/10 --></li> + <li><a href="<?cs var:toroot ?>guide/webapps/targeting.html"> + <span class="en">Targeting Screens from Web Apps</span> + </a> <span class="new">new!</span><!-- 11/1/10 --></li> <li><a href="<?cs var:toroot ?>guide/webapps/webview.html"> <span class="en">Building Web Apps in WebView</span> - </a> <span class="new">new!</span><!-- 10/8/10 --></li> + </a> <span class="new">new!</span><!-- 11/1/10 --></li> <li><a href="<?cs var:toroot ?>guide/webapps/debugging.html"> <span class="en">Debugging Web Apps</span> - </a> <span class="new">new!</span><!-- 10/8/10 --></li> + </a> <span class="new">new!</span><!-- 11/1/10 --></li> <li><a href="<?cs var:toroot ?>guide/webapps/best-practices.html"> <span class="en">Best Practices for Web Apps</span> - </a> <span class="new">new!</span><!-- 10/8/10 --></li> + </a> <span class="new">new!</span><!-- 11/1/10 --></li> </ul> </li> diff --git a/docs/html/guide/webapps/best-practices.jd b/docs/html/guide/webapps/best-practices.jd index 1bde5bfee149..4e9ae81acb3b 100644 --- a/docs/html/guide/webapps/best-practices.jd +++ b/docs/html/guide/webapps/best-practices.jd @@ -58,7 +58,7 @@ target screen density.</p> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> </pre> <p>For more information about how to use viewport meta data for Android-powered devices, read <a -href="{@docRoot}guide/webapps/targetting.html">Targetting Android Devices</a>.</p> +href="{@docRoot}guide/webapps/targeting.html">Targeting Screens from Web Apps</a>.</p> </li> diff --git a/docs/html/guide/webapps/debugging.jd b/docs/html/guide/webapps/debugging.jd index 098e17c0ebc0..ee4b723c246b 100644 --- a/docs/html/guide/webapps/debugging.jd +++ b/docs/html/guide/webapps/debugging.jd @@ -86,7 +86,7 @@ expect from other web browsers.</p> <p>If you've implemented a custom {@link android.webkit.WebView} in your application, all the same console APIs are supported when debugging your web page in WebView. On Android 1.6 and lower, console messages are automatically sent to logcat with the -"WebCore" logging tag. If you're targetting Android 2.1 (API Level 7) or higher, then you must +"WebCore" logging tag. If you're targeting Android 2.1 (API Level 7) or higher, then you must provide a {@link android.webkit.WebChromeClient} that implements the {@link android.webkit.WebChromeClient#onConsoleMessage(String,int,String) onConsoleMessage()} callback method, in order for console messages to appear in logcat.</p> diff --git a/docs/html/guide/webapps/index.jd b/docs/html/guide/webapps/index.jd new file mode 100644 index 000000000000..280380fe193a --- /dev/null +++ b/docs/html/guide/webapps/index.jd @@ -0,0 +1,71 @@ +page.title=Web Apps Overview +@jd:body + +<div class="figure" style="width:327px"> + <img src="{@docRoot}images/webapps/webapps.png" alt="" /> + <p class="img-caption"><strong>Figure 1.</strong> You can make your web content available to +users in two ways: in a traditional web browser and in an Android application, by +including a WebView in the layout.</p> +</div> + +<p>There are essentially two ways to deliver an application on Android: as a +client-side application (developed using the Android SDK and installed on user devices as an {@code +.apk}) or as a web application (developed using web standards and accessed through a web +browser—there's nothing to install on user devices).</p> + +<p>The approach you choose for your application could depend on several factors, but Android makes +the decision to develop a web application easier by providing:</p> +<ul> + <li>Support for viewport properties that allow you to properly size your web application +based on the screen size</li> + <li>CSS and JavaScript features that allow you to provide different styles and images +based on the screen's pixel density (screen resolution)</li> +</ul> + +<p>Thus, your decision to develop a web application for Android can exclude consideration for +screen support, because it's already easy to make your web pages look good on all types of screens +powered by Android.</p> + +<p>Another great feature of Android is that you don't have to build your application purely on +the client or purely on the web. You can mix the two together by developing a client-side Android +application that embeds some web pages (using a {@link android.webkit.WebView} in your Android +application layout). Figure 1 visualizes how you can provide access to your web pages from either +a web browser or your Android application. However, you shouldn't develop an Android +application simply as a means to launch your web site. Rather, the web pages you embed in your +Android application should be designed especially for that environment. You can even define an +interface between your Android application and your web pages that allows JavaScript in the web +pages to call upon APIs in your Android application—providing Android APIs to your web-based +application.</p> + +<p>Since Android 1.0, {@link android.webkit.WebView} has been available for Android +applications to embed web content in their layout and bind JavaScript to Android APIs. After +Android added support for more screen densities (adding support for high and low-density +screens), Android 2.0 added features to the WebKit framework to allow web pages to specify +viewport properties and query the screen density in order to modify styles +and image assets, as mentioned above. Because these features are a part of Android's WebKit +framework, both the Android Browser (the default web browser provided with the platform) and +{@link android.webkit.WebView} support the same viewport and screen density features.</p> + +<p>To develop a web application for Android-powered devices, you should read the +following documents:</p> + +<dl> + <dt><a href="{@docRoot}guide/webapps/targeting.html"><strong>Targeting Screens from Web +Apps</strong></a></dt> + <dd>How to properly size your web app on Android-powered devices and support +multiple screen densities. The information in this document is important if you're building a web +application that you at least expect to be available on Android-powered devices (which you should +assume for anything you publish on the web), but especially if you're targeting mobile devices +or using {@link android.webkit.WebView}.</dd> + <dt><a href="{@docRoot}guide/webapps/webview.html"><strong>Building Web Apps in +WebView</strong></a></dt> + <dd>How to embed web pages into your Android application using {@link android.webkit.WebView} and +bind JavaScript to Android APIs.</dd> + <dt><a href="{@docRoot}guide/webapps/debugging.html"><strong>Debugging Web Apps</strong></a></dt> + <dd>How to debug web apps using JavaScript Console APIs.</dd> + <dt><a href="{@docRoot}guide/webapps/best-practices.html"><strong>Best Practices for Web</strong> +Apps</a></dt> + <dd>A list of practices you should follow, in order to provide an effective web application on +Android-powered devices.</dd> +</dl> + diff --git a/docs/html/guide/webapps/targetting.jd b/docs/html/guide/webapps/targeting.jd index 844b9cac1d0b..bdc2d5e81ff0 100644 --- a/docs/html/guide/webapps/targetting.jd +++ b/docs/html/guide/webapps/targeting.jd @@ -1,4 +1,4 @@ -page.title=Targetting Android Devices +page.title=Targeting Screens from Web Apps @jd:body <div id="qv-wrapper"> @@ -7,7 +7,8 @@ page.title=Targetting Android Devices <ul> <li>You can target your web page for different screens using viewport metadata, CSS, and JavaScript</li> - <li>Techniques in this document work for Android 2.0 and greater</li> + <li>Techniques in this document work for Android 2.0 and greater, and for web pages rendered +in the default Android Browser and in a {@link android.webkit.WebView}</li> </ul> <h2>In this document</h2> @@ -19,8 +20,8 @@ JavaScript</li> <li><a href="#ViewportDensity">Defining the viewport target density</a></li> </ol> </li> -<li><a href="#DensityCSS">Targetting Device Density with CSS</a></li> -<li><a href="#DensityJS">Targetting Device Density with JavaScript</a></li> +<li><a href="#DensityCSS">Targeting Device Density with CSS</a></li> +<li><a href="#DensityJS">targeting Device Density with JavaScript</a></li> </ol> </div> @@ -28,8 +29,18 @@ JavaScript</li> <p>If you're developing a web application for Android or redesigning one for mobile devices, you -should account for some factors that affect the way the Android Browser renders your web page by -default. There are two fundamental factors that you should account for:</p> +should carefully consider how your web pages appear on different kinds of screens. Because +Android is available on devices with different types of screens, you should account for some factors +that affect the way your web pages appear on Android devices.</p> + +<p class="note"><strong>Note:</strong> The features described in this document are supported +by the Android Browser application (provided with the default Android platform) and {@link +android.webkit.WebView} (the framework view widget for displaying web pages), on Android 2.0 and +greater. Third-party web browsers running on Android might not support these features for +controlling the viewport size and screen densities.</p> + +<p>When targeting your web pages for Android devices, there are two fundamental factors that you +should account for:</p> <dl> <dt>The size of the viewport and scale of the web page</dt> @@ -37,39 +48,38 @@ default. There are two fundamental factors that you should account for:</p> page in "overview mode," which provides a zoomed-out perspective of the web page. You can override this behavior for your web page by defining the default dimensions of the viewport or the initial scale of the viewport. You can also control how much the user can zoom in and out of your web -page, if at all. - <p>However, the user can also disable overview mode in the -Browser settings, so you should not assume that your page will load in overview mode. You -should instead customize the viewport size and/or scale as appropriate for your page.</p></dd> +page, if at all. The user can also disable overview mode in the +Browser settings, so you should never assume that your page will load in overview mode. You +should instead customize the viewport size and/or scale as appropriate for your page.</p> + <p>However, when your page is rendered in a {@link android.webkit.WebView}, the page loads at +full zoom (not in "overview mode"). That is, it appears at the default size for the page, +instead of zoomed out. (This is also how the page appears if the user disables overview +mode.)</p></dd> <dt>The device's screen density</dt> <dd>The screen density (the number of pixels per inch) on an Android-powered device affects the resolution and size at which a web page is displayed. (There are three screen density -categories: low, medium, and high.) The Android Browser compensates for variations in the screen +categories: low, medium, and high.) The Android Browser and {@link android.webkit.WebView} +compensate for variations in the screen density by scaling a web page so that all devices display the web page at the same perceivable size as a medium-density screen. If graphics are an important element of your web design, you should pay close attention to the scaling that occurs on different densities, because image scaling -can produce artifacts (blurring and pixelation). +can produce artifacts (blurring and pixelation). <p>To provide the best visual representation on all screen densities, you should control how scaling occurs by providing viewport metadata about your web page's target screen density and providing alternative graphics for different screen densities, which you can apply to different screens using CSS or JavaScript.</p></dd> </dl> -<p>The rest of this document describes how you can account for these effects, and how to target -your web page for specific screen configurations.</p> - -<p class="note"><strong>Note:</strong> The features described in this document are supported -by the Android Browser application on Android 2.0 and greater. Third-party web browsers running on -Android might not support these techniques for controlling the viewport size and targetting -screen densities.</p> +<p>The rest of this document describes how you can account for these effects and provide a good +design on multiple types of screens.</p> <h2 id="Metadata">Using Viewport Metadata</h2> -<p>The viewport is the area in which the Android Browser -draws a web page. Although the viewport's visible area matches the size of the screen, +<p>The viewport is the area in which your web page is drawn. Although the viewport's visible area +matches the size of the screen, the viewport has its own dimensions that determine the number of pixels available to a web page. That is, the number of pixels available to a web page before it exceeds the screen area is defined by the dimensions of the viewport, @@ -116,34 +126,34 @@ accepted values are.</p> <div class="figure" style="width:300px"> <img src="{@docRoot}images/webapps/compare-default.png" alt="" height="300" /> - <p class="img-caption"><strong>Figure 1.</strong> A web page with no viewport metadata and an -image that's 320 pixels wide (the viewport is 800 pixels wide, by default).</p> + <p class="img-caption"><strong>Figure 1.</strong> A web page with an image that's 320 pixels +wide, in the Android Browser when there is no viewport metadata set (with "overview mode" +enabled, the viewport is 800 pixels wide, by default).</p> </div> <div class="figure" style="width:300px"> <img src="{@docRoot}images/webapps/compare-width400.png" alt="" height="300" /> - <p class="img-caption"><strong>Figure 2.</strong> A web page with viewport {@code width=400} -(the image in the web page is 320 pixels wide).</p> + <p class="img-caption"><strong>Figure 2.</strong> A web page with viewport {@code width=400} and +"overview mode" enabled (the image in the web page is 320 pixels wide).</p> </div> <h3 id="ViewportSize">Defining the viewport size</h3> <p>Viewport's {@code height} and {@code width} properties allow you to specify the size of the -viewport (the number of pixels available to the web page before it goes off screen). By default, the -Android Browser's minimum viewport width is 800 pixels, so if your web -page specifies its size to be 320 pixels wide, then your page renders smaller than the visible -screen (even if the physical screen is 320 pixels wide, because the viewport simulates a -drawable area that's 800 pixels wide), as shown in figure 1. So, you should explicitly define the -viewport {@code width} to match the width for which you have designed your web page.</p> +viewport (the number of pixels available to the web page before it goes off screen).</p> -<p class="note"><strong>Note:</strong> Width values that are greater than 10,000 are ignored and -values less than (or equal to) 320 result in a value equal to the device-width. Height values that -are greater then 10,000 or less than 200 are also ignored.</p> +<p>As mentioned in the introduction above, the Android Browser loads pages in "overview mode" by +default (unless disable by the user), which sets the minimum viewport width to 800 pixels. So, if +your web page specifies its size to be 320 pixels wide, then your page appears smaller than the +visible screen (even if the physical screen is 320 pixels wide, because the viewport simulates a +drawable area that's 800 pixels wide), as shown in figure 1. To avoid this effect, you should +explicitly define the viewport {@code width} to match the width for which you have designed your web +page.</p> <p>For example, if your web page is designed to be exactly 320 pixels wide, then you might -want to specify that for the viewport width:</p> +want to specify that size for the viewport width:</p> <pre> <meta name="viewport" content="width=320" /> @@ -152,18 +162,22 @@ want to specify that for the viewport width:</p> <p>In this case, your web page exactly fits the screen width, because the web page width and viewport width are the same.</p> +<p class="note"><strong>Note:</strong> Width values that are greater than 10,000 are ignored and +values less than (or equal to) 320 result in a value equal to the device-width (discussed below). +Height values that are greater then 10,000 or less than 200 are also ignored.</p> + <p>To demonstrate how this property affects the size of -your web page, figure 2 shows a web page that contains an image that's 320 pixels wide, but with the -viewport width set to 400.</p> +your web page, figure 2 shows a web page that contains an image that's 320 pixels +wide, but with the viewport width set to 400.</p> <p class="note"><strong>Note:</strong> If you set the viewport width to match your web page width -and the device screen width does <em>not</em> match those dimensions, then the web page +and the device's screen width does <em>not</em> match those dimensions, then the web page still fits the screen even if the device has a high or low-density screen, because the -Android Browser scales web pages to match the perceived size on a medium-density -screen, by default (as you can see in figure 2, when comparing the hdpi device to the mdpi device). -Screen densities are discussed more in <a href="#ViewportDensity">Defining the viewport target -density</a>.</p> +Android Browser and {@link android.webkit.WebView} scale web pages to match the perceived size on a +medium-density screen, by default (as you can see in figure 2, when comparing the hdpi device to the +mdpi device). Screen densities are discussed more in <a href="#ViewportDensity">Defining the +viewport target density</a>.</p> <h4>Automatic sizing</h4> @@ -254,11 +268,12 @@ density.</p> <h3 id="ViewportDensity">Defining the viewport target density</h3> -<p>The density of a device's screen is based on the screen resolution. There are three screen +<p>The density of a device's screen is based on the screen resolution, as defined by the number of +dots per inch (dpi). There are three screen density categories supported by Android: low (ldpi), medium (mdpi), and high (mdpi). A screen with low density has fewer available pixels per inch, whereas a screen with high density has more -pixels per inch (compared to a medium density screen). The Android Browser targets a medium density -screen by default.</p> +pixels per inch (compared to a medium density screen). The Android Browser and {@link +android.webkit.WebView} target a medium density screen by default.</p> <div class="figure" style="width:300px"> @@ -269,11 +284,12 @@ width=device-width} and {@code target-densitydpi=device-dpi}.</p> <p>Because the default target density is medium, when users have a device with a low or high density -screen, the Android Browser scales web pages (effectively zooms the pages) so they display at a -size that matches the perceived appearance on a medium density screen. Specifically, the Android -Browser applies approximately 1.5x scaling to web pages on a high density screen -(because its screen pixels are smaller) and approximately 0.75x scaling to pages on a low density -screen (because its screen pixels are bigger).</p> +screen, the Android Browser and {@link android.webkit.WebView} scale web pages (effectively zoom +the pages) so they display at a +size that matches the perceived appearance on a medium density screen. More specifically, the +Android Browser and {@link android.webkit.WebView} apply approximately 1.5x scaling to web pages +on a high density screen (because its screen pixels are smaller) and approximately 0.75x scaling to +pages on a low density screen (because its screen pixels are bigger).</p> <p>Due to this default scaling, figures 1, 2, and 3 show the example web page at the same physical size on both the high and medium density device (the high-density device shows the @@ -299,10 +315,10 @@ as appropriate.</li> be within the range 70–400.</li> </ul></p> -<p>For example, to prevent the Android Browser from scaling of your web page for different screen -densities, set -the {@code target-densitydpi} viewport property to {@code device-dpi}. When you do, the Android -Browser does not scale the page and, instead, displays your web page to match the current screen +<p>For example, to prevent the Android Browser and {@link android.webkit.WebView} from scaling +your web page for different screen densities, set +the {@code target-densitydpi} viewport property to {@code device-dpi}. When you do, the page is +not scaled. Instead, the page is displayed at a size that matches the current screen's density. In this case, you should also define the viewport width to match the device width, so your web page naturally fits the screen size. For example:</p> @@ -319,9 +335,10 @@ different densities, <a href="#DensityCSS">with CSS</a> or <a href="#DensityJS">with JavaScript</a>.)</p> -<h2 id="DensityCSS">Targetting Device Density with CSS</h2> +<h2 id="DensityCSS">Targeting Device Density with CSS</h2> -<p>The Android Browser supports a CSS media feature that allows you to create styles for specific +<p>The Android Browser and {@link android.webkit.WebView} support a CSS media feature that allows +you to create styles for specific screen densities—the <code>-webkit-device-pixel-ratio</code> CSS media feature. The value you apply to this feature should be either "0.75", "1", or "1.5", to indicate that the styles are for devices with low density, medium density, @@ -378,8 +395,9 @@ density match the device. That is:</p> <meta name="viewport" content="target-densitydpi=device-dpi, width=device-width" /> </pre> -<p>This way, the Android Browser does not perform scaling on your web page and the viewport width -matches the screen width exactly. On its own, these viewport properties create results shown in +<p>This way, the Android Browser and {@link android.webkit.WebView} do not perform scaling on your +web page and the viewport width +matches the screen width exactly. On their own, these viewport properties create results shown in figure 4. However, by adding some custom CSS using the {@code -webkit-device-pixel-ratio} media feature, you can apply different styles. For example, figure 5 shows a web page with these viewport properties and also some CSS added that applies a high-resolution image for high-density @@ -387,16 +405,18 @@ screens.</p> -<h2 id="DensityJS">Targetting Device Density with JavaScript</h2> +<h2 id="DensityJS">Targeting Device Density with JavaScript</h2> -<p>The Android Browser supports a DOM property that allows you to query the density of the current +<p>The Android Browser and {@link android.webkit.WebView} support a DOM property that allows you to +query the density of the current device—the <code>window.devicePixelRatio</code> DOM property. The value of this property specifies the scaling factor used for the current device. For example, if the value of <code>window.devicePixelRatio</code> is "1.0", then the device is considered a medium density device and no scaling is applied by default; if the value is "1.5", then the device is considered a high density device and the page is scaled 1.5x by default; if the value is "0.75", then the device is considered a low density device and the page is scaled -0.75x by default. Of course, the scaling that the Android Browser applies is based on the web page's +0.75x by default. Of course, the scaling that the Android Browser and {@link android.webkit.WebView} +apply is based on the web page's target density—as described in the section about <a href="#ViewportDensity">Defining the viewport target density</a>, the default target is medium-density, but you can change the target to affect how your web page is scaled for different screen densities.</p> diff --git a/docs/html/images/webapps/compare-default.png b/docs/html/images/webapps/compare-default.png Binary files differindex 9495a0526f56..129cb3397dd1 100644 --- a/docs/html/images/webapps/compare-default.png +++ b/docs/html/images/webapps/compare-default.png diff --git a/docs/html/images/webapps/compare-initialscale-devicedpi.png b/docs/html/images/webapps/compare-initialscale-devicedpi.png Binary files differindex 6bb758a63f79..3b0fb6a89bf2 100644 --- a/docs/html/images/webapps/compare-initialscale-devicedpi.png +++ b/docs/html/images/webapps/compare-initialscale-devicedpi.png diff --git a/docs/html/images/webapps/compare-initialscale.png b/docs/html/images/webapps/compare-initialscale.png Binary files differindex 2232d5bcf318..09314bbaac87 100644 --- a/docs/html/images/webapps/compare-initialscale.png +++ b/docs/html/images/webapps/compare-initialscale.png diff --git a/docs/html/images/webapps/compare-width-devicedpi-css.png b/docs/html/images/webapps/compare-width-devicedpi-css.png Binary files differindex bb4ab3102a4a..3efa3860b78e 100644 --- a/docs/html/images/webapps/compare-width-devicedpi-css.png +++ b/docs/html/images/webapps/compare-width-devicedpi-css.png diff --git a/docs/html/images/webapps/compare-width400.png b/docs/html/images/webapps/compare-width400.png Binary files differindex 669a2346b061..d65438157d96 100644 --- a/docs/html/images/webapps/compare-width400.png +++ b/docs/html/images/webapps/compare-width400.png diff --git a/docs/html/images/webapps/webapps.png b/docs/html/images/webapps/webapps.png Binary files differnew file mode 100644 index 000000000000..6ad620530345 --- /dev/null +++ b/docs/html/images/webapps/webapps.png diff --git a/docs/html/resources/resources_toc.cs b/docs/html/resources/resources_toc.cs index 628287d89191..735a00eba20f 100644 --- a/docs/html/resources/resources_toc.cs +++ b/docs/html/resources/resources_toc.cs @@ -236,6 +236,9 @@ <li><a href="<?cs var:toroot ?>resources/samples/SearchableDictionary/index.html"> <span class="en">Searchable Dictionary v2</span> </a> <span class="new">new!</span></li> + <li><a href="<?cs var:toroot ?>resources/samples/SipDemo/index.html"> + <span class="en">SIP Demo</span> + </a> <span class="new">new!</span></li> <li><a href="<?cs var:toroot ?>resources/samples/Snake/index.html"> <span class="en">Snake</span> </a></li> diff --git a/docs/html/resources/samples/images/SipDemo.png b/docs/html/resources/samples/images/SipDemo.png Binary files differnew file mode 100755 index 000000000000..999bea944719 --- /dev/null +++ b/docs/html/resources/samples/images/SipDemo.png diff --git a/docs/html/resources/samples/index.jd b/docs/html/resources/samples/index.jd index 9fc8e0bf86bd..cbe6ca386950 100644 --- a/docs/html/resources/samples/index.jd +++ b/docs/html/resources/samples/index.jd @@ -73,6 +73,10 @@ adapter).</dd> <dd>A sample application that demonstrates Android's search framework, including how to provide search suggestions for Quick Search Box.</dd> + <dt><a href="SipDemo/index.html">SIP Demo</a></dt> + <dd>An application that demonstrates how to make an internet-based call using the SIP + API.</dd> + <dt><a href="Snake/index.html">Snake</a></dt> <dd>An implementation of the classic game "Snake."</dd> diff --git a/packages/SystemUI/src/com/android/systemui/usb/StorageNotification.java b/packages/SystemUI/src/com/android/systemui/usb/StorageNotification.java index 47ed7daf6f95..7dff54935b8d 100644 --- a/packages/SystemUI/src/com/android/systemui/usb/StorageNotification.java +++ b/packages/SystemUI/src/com/android/systemui/usb/StorageNotification.java @@ -23,6 +23,8 @@ import android.content.Context; import android.content.Intent; import android.content.res.Resources; import android.os.Environment; +import android.os.Handler; +import android.os.HandlerThread; import android.os.storage.StorageEventListener; import android.os.storage.StorageManager; import android.provider.Settings; @@ -60,6 +62,8 @@ public class StorageNotification extends StorageEventListener { private boolean mUmsAvailable; private StorageManager mStorageManager; + private Handler mAsyncEventHandler; + public StorageNotification(Context context) { mContext = context; @@ -67,6 +71,11 @@ public class StorageNotification extends StorageEventListener { final boolean connected = mStorageManager.isUsbMassStorageConnected(); Slog.d(TAG, String.format( "Startup with UMS connection %s (media state %s)", mUmsAvailable, Environment.getExternalStorageState())); + + HandlerThread thr = new HandlerThread("SystemUI StorageNotification"); + thr.start(); + mAsyncEventHandler = new Handler(thr.getLooper()); + onUsbMassStorageConnectionChanged(connected); } @@ -74,7 +83,16 @@ public class StorageNotification extends StorageEventListener { * @override com.android.os.storage.StorageEventListener */ @Override - public void onUsbMassStorageConnectionChanged(boolean connected) { + public void onUsbMassStorageConnectionChanged(final boolean connected) { + mAsyncEventHandler.post(new Runnable() { + @Override + public void run() { + onUsbMassStorageConnectionChangedAsync(connected); + } + }); + } + + private void onUsbMassStorageConnectionChangedAsync(boolean connected) { mUmsAvailable = connected; /* * Even though we may have a UMS host connected, we the SD card @@ -98,7 +116,16 @@ public class StorageNotification extends StorageEventListener { * @override com.android.os.storage.StorageEventListener */ @Override - public void onStorageStateChanged(String path, String oldState, String newState) { + public void onStorageStateChanged(final String path, final String oldState, final String newState) { + mAsyncEventHandler.post(new Runnable() { + @Override + public void run() { + onStorageStateChangedAsync(path, oldState, newState); + } + }); + } + + private void onStorageStateChangedAsync(String path, String oldState, String newState) { Slog.i(TAG, String.format( "Media {%s} state changed from {%s} -> {%s}", path, oldState, newState)); if (newState.equals(Environment.MEDIA_SHARED)) { diff --git a/packages/SystemUI/src/com/android/systemui/usb/UsbStorageActivity.java b/packages/SystemUI/src/com/android/systemui/usb/UsbStorageActivity.java index d024dd0870c9..1383216500ff 100644 --- a/packages/SystemUI/src/com/android/systemui/usb/UsbStorageActivity.java +++ b/packages/SystemUI/src/com/android/systemui/usb/UsbStorageActivity.java @@ -34,6 +34,7 @@ import android.hardware.Usb; import android.os.Bundle; import android.os.Environment; import android.os.Handler; +import android.os.HandlerThread; import android.os.IBinder; import android.os.storage.IMountService; import android.os.storage.StorageManager; @@ -71,6 +72,12 @@ public class UsbStorageActivity extends Activity private static final int DLG_ERROR_SHARING = 2; static final boolean localLOGV = false; + // UI thread + private Handler mUIHandler; + + // thread for working with the storage services, which can be slow + private Handler mAsyncStorageHandler; + /** Used to detect when the USB cable is unplugged, so we can call finish() */ private BroadcastReceiver mUsbStateReceiver = new BroadcastReceiver() { @Override @@ -99,6 +106,12 @@ public class UsbStorageActivity extends Activity Log.w(TAG, "Failed to get StorageManager"); } } + + mUIHandler = new Handler(); + + HandlerThread thr = new HandlerThread("SystemUI UsbStorageActivity"); + thr.start(); + mAsyncStorageHandler = new Handler(thr.getLooper()); requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); setProgressBarIndeterminateVisibility(true); @@ -123,7 +136,16 @@ public class UsbStorageActivity extends Activity mProgressBar = (ProgressBar) findViewById(com.android.internal.R.id.progress); } - private void switchDisplay(boolean usbStorageInUse) { + private void switchDisplay(final boolean usbStorageInUse) { + mUIHandler.post(new Runnable() { + @Override + public void run() { + switchDisplayAsync(usbStorageInUse); + } + }); + } + + private void switchDisplayAsync(boolean usbStorageInUse) { if (usbStorageInUse) { mProgressBar.setVisibility(View.GONE); mUnmountButton.setVisibility(View.VISIBLE); @@ -148,7 +170,12 @@ public class UsbStorageActivity extends Activity mStorageManager.registerListener(mStorageListener); registerReceiver(mUsbStateReceiver, new IntentFilter(Usb.ACTION_USB_STATE)); try { - switchDisplay(mStorageManager.isUsbMassStorageEnabled()); + mAsyncStorageHandler.post(new Runnable() { + @Override + public void run() { + switchDisplay(mStorageManager.isUsbMassStorageEnabled()); + } + }); } catch (Exception ex) { Log.e(TAG, "Failed to read UMS enable state", ex); } @@ -188,7 +215,7 @@ public class UsbStorageActivity extends Activity .setTitle(R.string.dlg_confirm_kill_storage_users_title) .setPositiveButton(R.string.dlg_ok, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { - switchUsbMassStorageAsync(true); + switchUsbMassStorage(true); }}) .setNegativeButton(R.string.cancel, null) .setMessage(R.string.dlg_confirm_kill_storage_users_text) @@ -210,26 +237,42 @@ public class UsbStorageActivity extends Activity showDialog(id); } - private void switchUsbMassStorageAsync(boolean on) { - mUnmountButton.setVisibility(View.GONE); - mMountButton.setVisibility(View.GONE); + private void switchUsbMassStorage(final boolean on) { + // things to do on the UI thread + mUIHandler.post(new Runnable() { + @Override + public void run() { + mUnmountButton.setVisibility(View.GONE); + mMountButton.setVisibility(View.GONE); - mProgressBar.setVisibility(View.VISIBLE); - // will be hidden once USB mass storage kicks in (or fails) + mProgressBar.setVisibility(View.VISIBLE); + // will be hidden once USB mass storage kicks in (or fails) + } + }); - final boolean _on = on; - new Thread() { + // things to do elsewhere + mAsyncStorageHandler.post(new Runnable() { + @Override public void run() { - if (_on) { + if (on) { mStorageManager.enableUsbMassStorage(); } else { mStorageManager.disableUsbMassStorage(); } } - }.start(); + }); } private void checkStorageUsers() { + mAsyncStorageHandler.post(new Runnable() { + @Override + public void run() { + checkStorageUsersAsync(); + } + }); + } + + private void checkStorageUsersAsync() { IMountService ims = getMountService(); if (ims == null) { // Display error dialog @@ -258,7 +301,7 @@ public class UsbStorageActivity extends Activity showDialogInner(DLG_CONFIRM_KILL_STORAGE_USERS); } else { if (localLOGV) Log.i(TAG, "Enabling UMS"); - switchUsbMassStorageAsync(true); + switchUsbMassStorage(true); } } @@ -268,7 +311,7 @@ public class UsbStorageActivity extends Activity checkStorageUsers(); } else if (v == mUnmountButton) { if (localLOGV) Log.i(TAG, "Disabling UMS"); - switchUsbMassStorageAsync(false); + switchUsbMassStorage(false); } } diff --git a/packages/VpnServices/res/drawable/vpn_connected.png b/packages/VpnServices/res/drawable/vpn_connected.png Binary files differindex 65fc6db787bf..c92087680187 100644 --- a/packages/VpnServices/res/drawable/vpn_connected.png +++ b/packages/VpnServices/res/drawable/vpn_connected.png diff --git a/packages/VpnServices/res/drawable/vpn_disconnected.png b/packages/VpnServices/res/drawable/vpn_disconnected.png Binary files differindex 2440c6909ef5..c92087680187 100644 --- a/packages/VpnServices/res/drawable/vpn_disconnected.png +++ b/packages/VpnServices/res/drawable/vpn_disconnected.png |