diff --git a/api/current.xml b/api/current.xml index 06eeba7603a6e..570261fcd6895 100644 --- a/api/current.xml +++ b/api/current.xml @@ -6829,6 +6829,17 @@ visibility="public" > + + + + = Build.VERSION_CODES.HONEYCOMB + ? com.android.internal.R.style.Theme_Holo_Dialog_Alert + : com.android.internal.R.style.Theme_Dialog_Alert); } protected AlertDialog(Context context, int theme) { @@ -65,7 +69,10 @@ public class AlertDialog extends Dialog implements DialogInterface { } protected AlertDialog(Context context, boolean cancelable, OnCancelListener cancelListener) { - super(context, com.android.internal.R.style.Theme_Dialog_Alert); + super(context, + context.getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.HONEYCOMB + ? com.android.internal.R.style.Theme_Holo_Dialog_Alert + : com.android.internal.R.style.Theme_Dialog_Alert); setCancelable(cancelable); setOnCancelListener(cancelListener); mAlert = new AlertController(context, this, getWindow()); @@ -271,7 +278,10 @@ public class AlertDialog extends Dialog implements DialogInterface { * Constructor using a context for this builder and the {@link AlertDialog} it creates. */ public Builder(Context context) { - this(context, com.android.internal.R.style.Theme_Dialog_Alert); + this(context, + context.getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.HONEYCOMB + ? com.android.internal.R.style.Theme_Holo_Dialog_Alert + : com.android.internal.R.style.Theme_Dialog_Alert); } /** diff --git a/core/java/android/app/ContextImpl.java b/core/java/android/app/ContextImpl.java index 74971364aafdc..77f58601701e5 100644 --- a/core/java/android/app/ContextImpl.java +++ b/core/java/android/app/ContextImpl.java @@ -76,6 +76,7 @@ import android.net.Uri; import android.net.wifi.IWifiManager; import android.net.wifi.WifiManager; import android.os.Binder; +import android.os.Build; import android.os.Bundle; import android.os.DropBoxManager; import android.os.Environment; @@ -1063,8 +1064,13 @@ class ContextImpl extends Context { private NotificationManager getNotificationManager() { synchronized (mSync) { if (mNotificationManager == null) { + final Context outerContext = getOuterContext(); mNotificationManager = new NotificationManager( - new ContextThemeWrapper(getOuterContext(), com.android.internal.R.style.Theme_Dialog), + new ContextThemeWrapper(outerContext, + outerContext.getApplicationInfo().targetSdkVersion >= + Build.VERSION_CODES.HONEYCOMB + ? com.android.internal.R.style.Theme_Holo_Dialog + : com.android.internal.R.style.Theme_Dialog), mMainThread.getHandler()); } } diff --git a/core/java/android/app/DatePickerDialog.java b/core/java/android/app/DatePickerDialog.java index 8ba480d23bace..37f8738d8defb 100644 --- a/core/java/android/app/DatePickerDialog.java +++ b/core/java/android/app/DatePickerDialog.java @@ -19,6 +19,7 @@ package android.app; import android.content.Context; import android.content.DialogInterface; import android.content.DialogInterface.OnClickListener; +import android.os.Build; import android.os.Bundle; import android.text.TextUtils.TruncateAt; import android.view.LayoutInflater; @@ -82,7 +83,9 @@ public class DatePickerDialog extends AlertDialog implements OnClickListener, int year, int monthOfYear, int dayOfMonth) { - this(context, com.android.internal.R.style.Theme_Dialog_Alert, + this(context, context.getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.HONEYCOMB + ? com.android.internal.R.style.Theme_Holo_Dialog_Alert + : com.android.internal.R.style.Theme_Dialog_Alert, callBack, year, monthOfYear, dayOfMonth); } diff --git a/core/java/android/app/Dialog.java b/core/java/android/app/Dialog.java index a0be0cde1f5d0..04735bfa4d826 100644 --- a/core/java/android/app/Dialog.java +++ b/core/java/android/app/Dialog.java @@ -25,6 +25,7 @@ import android.content.ContextWrapper; import android.content.DialogInterface; import android.graphics.drawable.Drawable; import android.net.Uri; +import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.os.Message; @@ -140,7 +141,10 @@ public class Dialog implements DialogInterface, Window.Callback, */ public Dialog(Context context, int theme) { mContext = new ContextThemeWrapper( - context, theme == 0 ? com.android.internal.R.style.Theme_Dialog : theme); + context, theme == 0 ? + (context.getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.HONEYCOMB + ? com.android.internal.R.style.Theme_Holo_Dialog + : com.android.internal.R.style.Theme_Dialog) : theme); mWindowManager = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE); Window w = PolicyManager.makeNewWindow(mContext); mWindow = w; diff --git a/core/java/android/app/DialogFragment.java b/core/java/android/app/DialogFragment.java index e8dfac99c4bc8..8e2389b2e5c8e 100644 --- a/core/java/android/app/DialogFragment.java +++ b/core/java/android/app/DialogFragment.java @@ -199,7 +199,7 @@ public class DialogFragment extends Fragment public void setStyle(int style, int theme) { mStyle = style; if (mStyle == STYLE_NO_FRAME || mStyle == STYLE_NO_INPUT) { - mTheme = android.R.style.Theme_Dialog_NoFrame; + mTheme = com.android.internal.R.style.Theme_Holo_Dialog_NoFrame; } if (theme != 0) { mTheme = theme; diff --git a/core/java/android/app/ProgressDialog.java b/core/java/android/app/ProgressDialog.java index bdea0698cf595..07a5a22c0edc8 100644 --- a/core/java/android/app/ProgressDialog.java +++ b/core/java/android/app/ProgressDialog.java @@ -18,6 +18,7 @@ package android.app; import android.content.Context; import android.graphics.drawable.Drawable; +import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.os.Message; @@ -73,7 +74,10 @@ public class ProgressDialog extends AlertDialog { private Handler mViewUpdateHandler; public ProgressDialog(Context context) { - this(context, com.android.internal.R.style.Theme_Dialog_Alert); + this(context, + context.getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.HONEYCOMB + ? com.android.internal.R.style.Theme_Holo_Dialog_Alert + : com.android.internal.R.style.Theme_Dialog_Alert); } public ProgressDialog(Context context, int theme) { diff --git a/core/java/android/app/TimePickerDialog.java b/core/java/android/app/TimePickerDialog.java index 521d41c3ec4b9..381143c9f3921 100644 --- a/core/java/android/app/TimePickerDialog.java +++ b/core/java/android/app/TimePickerDialog.java @@ -19,6 +19,7 @@ package android.app; import android.content.Context; import android.content.DialogInterface; import android.content.DialogInterface.OnClickListener; +import android.os.Build; import android.os.Bundle; import android.text.format.DateFormat; import android.view.LayoutInflater; @@ -76,7 +77,10 @@ public class TimePickerDialog extends AlertDialog implements OnClickListener, public TimePickerDialog(Context context, OnTimeSetListener callBack, int hourOfDay, int minute, boolean is24HourView) { - this(context, com.android.internal.R.style.Theme_Dialog_Alert, + this(context, + context.getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.HONEYCOMB + ? com.android.internal.R.style.Theme_Holo_Dialog_Alert + : com.android.internal.R.style.Theme_Dialog_Alert, callBack, hourOfDay, minute, is24HourView); } diff --git a/core/res/res/color/primary_text_disable_only_holo_dark.xml b/core/res/res/color/primary_text_disable_only_holo_dark.xml new file mode 100644 index 0000000000000..6de4583f0b8eb --- /dev/null +++ b/core/res/res/color/primary_text_disable_only_holo_dark.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/core/res/res/color/primary_text_disable_only_holo_light.xml b/core/res/res/color/primary_text_disable_only_holo_light.xml new file mode 100644 index 0000000000000..87a92c81e2389 --- /dev/null +++ b/core/res/res/color/primary_text_disable_only_holo_light.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/core/res/res/color/primary_text_focused_holo_dark.xml b/core/res/res/color/primary_text_focused_holo_dark.xml new file mode 100644 index 0000000000000..80c68a4daa24f --- /dev/null +++ b/core/res/res/color/primary_text_focused_holo_dark.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/core/res/res/color/primary_text_holo_dark.xml b/core/res/res/color/primary_text_holo_dark.xml new file mode 100644 index 0000000000000..69ee30948506c --- /dev/null +++ b/core/res/res/color/primary_text_holo_dark.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/core/res/res/color/primary_text_holo_light.xml b/core/res/res/color/primary_text_holo_light.xml new file mode 100644 index 0000000000000..a8d31cecafbf1 --- /dev/null +++ b/core/res/res/color/primary_text_holo_light.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + diff --git a/core/res/res/color/primary_text_nodisable_holo_dark.xml b/core/res/res/color/primary_text_nodisable_holo_dark.xml new file mode 100644 index 0000000000000..f45088f44fcef --- /dev/null +++ b/core/res/res/color/primary_text_nodisable_holo_dark.xml @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/core/res/res/color/primary_text_nodisable_holo_light.xml b/core/res/res/color/primary_text_nodisable_holo_light.xml new file mode 100644 index 0000000000000..331e8c3dd323c --- /dev/null +++ b/core/res/res/color/primary_text_nodisable_holo_light.xml @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/core/res/res/color/search_url_text_holo.xml b/core/res/res/color/search_url_text_holo.xml new file mode 100644 index 0000000000000..78093ba7e24cb --- /dev/null +++ b/core/res/res/color/search_url_text_holo.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/core/res/res/color/secondary_text_holo_dark.xml b/core/res/res/color/secondary_text_holo_dark.xml new file mode 100644 index 0000000000000..376156e7427e2 --- /dev/null +++ b/core/res/res/color/secondary_text_holo_dark.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + diff --git a/core/res/res/color/secondary_text_holo_light.xml b/core/res/res/color/secondary_text_holo_light.xml new file mode 100644 index 0000000000000..b791aebef6443 --- /dev/null +++ b/core/res/res/color/secondary_text_holo_light.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + diff --git a/core/res/res/color/secondary_text_nodisable_holo_dark.xml b/core/res/res/color/secondary_text_nodisable_holo_dark.xml new file mode 100644 index 0000000000000..8c222418789fb --- /dev/null +++ b/core/res/res/color/secondary_text_nodisable_holo_dark.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/core/res/res/color/secondary_text_nodisable_holo_light.xml b/core/res/res/color/secondary_text_nodisable_holo_light.xml new file mode 100644 index 0000000000000..8c222418789fb --- /dev/null +++ b/core/res/res/color/secondary_text_nodisable_holo_light.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/core/res/res/color/tertiary_text_holo_dark.xml b/core/res/res/color/tertiary_text_holo_dark.xml new file mode 100644 index 0000000000000..269ff719e2448 --- /dev/null +++ b/core/res/res/color/tertiary_text_holo_dark.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/core/res/res/color/tertiary_text_holo_light.xml b/core/res/res/color/tertiary_text_holo_light.xml new file mode 100644 index 0000000000000..9e5c2d982aedf --- /dev/null +++ b/core/res/res/color/tertiary_text_holo_light.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/core/res/res/color/widget_edittext_holo_dark.xml b/core/res/res/color/widget_edittext_holo_dark.xml new file mode 100644 index 0000000000000..4f3eb62dfd323 --- /dev/null +++ b/core/res/res/color/widget_edittext_holo_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_dark.png index d72e2b95b8109..d93e58045d879 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_light.png index 240a0444e1eb4..ffbe776c84c04 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_off_disable_focused_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_disable_holo_dark.png index d72e2b95b8109..d93e58045d879 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_disable_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_off_disable_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_off_disable_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_disable_holo_light.png index 240a0444e1eb4..ffbe776c84c04 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_disable_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_off_disable_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png index 911e1aa6598c8..4148ac4072a5a 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_off_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_holo_light.png index 4ca3c56d3f3cb..2cc946f388640 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_dark.png index 08f41812ff452..9f9cb01c49b9f 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_light.png index d3754ddb42adf..56425d29af71f 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_off_pressed_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_off_selected_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_off_selected_holo_dark.png index 264f102132edd..f8199283b3dc2 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_selected_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_off_selected_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_off_selected_holo_light.png b/core/res/res/drawable-hdpi/btn_check_off_selected_holo_light.png index 48506bf721ba0..57cb5121305fd 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_off_selected_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_off_selected_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_dark.png index 7805458d2cdc3..1f7aeee3bbd58 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_light.png index 4e268d5168cb0..1f740add42bb1 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_on_disable_focused_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_disable_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_disable_holo_dark.png index 7805458d2cdc3..1f7aeee3bbd58 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_disable_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_on_disable_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_disable_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_disable_holo_light.png index 4e268d5168cb0..1f740add42bb1 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_disable_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_on_disable_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png index 5541c67ba042c..d0c4415458808 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_holo_light.png index 768c4afaed205..af84d4b0dbcb1 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_dark.png index 37e3953c87b3a..91e5f1465fc19 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_light.png index fc29e46248ab9..0cf7ed2319a81 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_on_pressed_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_selected_holo_dark.png b/core/res/res/drawable-hdpi/btn_check_on_selected_holo_dark.png index a0beac44afc8c..e758aab69fa26 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_selected_holo_dark.png and b/core/res/res/drawable-hdpi/btn_check_on_selected_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_check_on_selected_holo_light.png b/core/res/res/drawable-hdpi/btn_check_on_selected_holo_light.png index 5df45c74f1404..2edf656a36fb2 100644 Binary files a/core/res/res/drawable-hdpi/btn_check_on_selected_holo_light.png and b/core/res/res/drawable-hdpi/btn_check_on_selected_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_dark.9.png new file mode 100644 index 0000000000000..3deb3856bf6ea Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png new file mode 100644 index 0000000000000..de378a57a90e9 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_disabled_holo_dark.9.png new file mode 100644 index 0000000000000..35f8b3d292664 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_disabled_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_disabled_holo_light.9.png new file mode 100644 index 0000000000000..3f45375c35431 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_disabled_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_focused_holo_dark.9.png new file mode 100644 index 0000000000000..ea58bf707e41e Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_focused_holo_light.9.png new file mode 100644 index 0000000000000..b225aafff1939 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_normal_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_normal_holo_dark.9.png new file mode 100644 index 0000000000000..b5b1533fde912 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_normal_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_normal_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_normal_holo_light.9.png new file mode 100644 index 0000000000000..81b8a75bdc1f9 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_normal_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_default_pressed_holo_dark.9.png new file mode 100644 index 0000000000000..eb8d85acdf6f2 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_pressed_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_default_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/btn_default_pressed_holo_light.9.png new file mode 100644 index 0000000000000..6777ebfa1ee0d Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_default_pressed_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_disabled_off_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_disabled_off_holo_dark.png new file mode 100644 index 0000000000000..2a7505b410eae Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_disabled_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_disabled_off_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_disabled_off_holo_light.png new file mode 100644 index 0000000000000..bbb01f042593a Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_disabled_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_disabled_on_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_disabled_on_holo_dark.png new file mode 100644 index 0000000000000..b617a2a7cd244 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_disabled_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_disabled_on_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_disabled_on_holo_light.png new file mode 100644 index 0000000000000..fd59f4a86cf42 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_disabled_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_focused_off_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_focused_off_holo_dark.png new file mode 100644 index 0000000000000..5d17cded40ab5 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_focused_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_focused_off_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_focused_off_holo_light.png new file mode 100644 index 0000000000000..b6b4bf1ad49e7 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_focused_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_focused_on_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_focused_on_holo_dark.png new file mode 100644 index 0000000000000..eab50391378ef Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_focused_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_focused_on_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_focused_on_holo_light.png new file mode 100644 index 0000000000000..b6b4bf1ad49e7 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_focused_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_normal_off_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_normal_off_holo_dark.png new file mode 100644 index 0000000000000..edf2296876115 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_normal_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_normal_off_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_normal_off_holo_light.png new file mode 100644 index 0000000000000..68afa4c8f1368 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_normal_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_normal_on_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_normal_on_holo_dark.png new file mode 100644 index 0000000000000..c7df168f7f9fa Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_normal_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_normal_on_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_normal_on_holo_light.png new file mode 100644 index 0000000000000..5a9087b183742 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_normal_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png index 301c97df691bd..dd18b7afada7b 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png and b/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png index 657c8e55b8e99..66d538f35aa5d 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png and b/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_dark.png index 5e6ef2b947df1..4e777f85dbae3 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_dark.png and b/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_light.png index 342bf1168c3f1..6062033df64af 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_light.png and b/core/res/res/drawable-hdpi/btn_radio_off_pressed_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_off_selected_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_off_selected_holo_dark.png index d11ae858a5070..683a883d807a6 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_off_selected_holo_dark.png and b/core/res/res/drawable-hdpi/btn_radio_off_selected_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_off_selected_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_off_selected_holo_light.png index 68bd1dfee4682..19524ffe6ec7f 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_off_selected_holo_light.png and b/core/res/res/drawable-hdpi/btn_radio_off_selected_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png index 5b0dbe842358d..2e1111b48966f 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png and b/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png index 45ae36b5e0405..90639ecf3c3eb 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png and b/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_dark.png index c3a0d48f9fab3..190721537b637 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_dark.png and b/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_light.png index ca223587650a2..b51c7ad215b19 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_light.png and b/core/res/res/drawable-hdpi/btn_radio_on_pressed_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_on_selected_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_on_selected_holo_dark.png index 6c05f472aca76..06d39cc306985 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_on_selected_holo_dark.png and b/core/res/res/drawable-hdpi/btn_radio_on_selected_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_on_selected_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_on_selected_holo_light.png index a17fa1edd1245..06a4314bf3e33 100644 Binary files a/core/res/res/drawable-hdpi/btn_radio_on_selected_holo_light.png and b/core/res/res/drawable-hdpi/btn_radio_on_selected_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_pressed_off_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_pressed_off_holo_dark.png new file mode 100644 index 0000000000000..500490d4773d4 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_pressed_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_pressed_off_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_pressed_off_holo_light.png new file mode 100644 index 0000000000000..f6690c6ed2304 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_pressed_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_pressed_on_holo_dark.png b/core/res/res/drawable-hdpi/btn_radio_pressed_on_holo_dark.png new file mode 100644 index 0000000000000..933d2fe2ace89 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_pressed_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/btn_radio_pressed_on_holo_light.png b/core/res/res/drawable-hdpi/btn_radio_pressed_on_holo_light.png new file mode 100644 index 0000000000000..c07445a14f443 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_radio_pressed_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_dark.9.png new file mode 100755 index 0000000000000..128a8ddcaadd7 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_light.9.png new file mode 100755 index 0000000000000..da05c23894ca3 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_dark.9.png new file mode 100755 index 0000000000000..da66a98687cc2 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_light.9.png new file mode 100755 index 0000000000000..3ac8417933d0d Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_dark.9.png new file mode 100755 index 0000000000000..fc9d493c3edfa Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_light.9.png new file mode 100755 index 0000000000000..315ae3b0cbb67 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_holo.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_holo.9.png new file mode 100755 index 0000000000000..f903bdb1c3309 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_holo.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_dark.9.png new file mode 100755 index 0000000000000..ee9590c619309 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_light.9.png new file mode 100755 index 0000000000000..cbc9da2c97b69 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_dark.9.png new file mode 100755 index 0000000000000..17920638cb54b Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_light.9.png new file mode 100755 index 0000000000000..097025b77b407 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_dark.9.png new file mode 100755 index 0000000000000..5b92d7c6b439e Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_light.9.png new file mode 100755 index 0000000000000..a244f45b96481 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_dark.9.png new file mode 100755 index 0000000000000..9218f91dfb787 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_light.9.png new file mode 100755 index 0000000000000..81802f845bd0c Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_dark.9.png new file mode 100755 index 0000000000000..9dea9839b7a58 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_light.9.png new file mode 100755 index 0000000000000..fc2374ba85ae2 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_holo.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_holo.9.png new file mode 100755 index 0000000000000..4c1d89d79ed6a Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_holo.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_dark.9.png new file mode 100755 index 0000000000000..18bb6bd7f87d7 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_light.9.png new file mode 100755 index 0000000000000..de78a9f219b0f Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_dark.9.png new file mode 100755 index 0000000000000..22693261f8b25 Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_light.9.png new file mode 100755 index 0000000000000..ead4ccfd4b8ff Binary files /dev/null and b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/cab_divider_holo_dark.png b/core/res/res/drawable-hdpi/cab_divider_holo_dark.png new file mode 100755 index 0000000000000..e6f61fc500bb0 Binary files /dev/null and b/core/res/res/drawable-hdpi/cab_divider_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/cab_divider_holo_light.png b/core/res/res/drawable-hdpi/cab_divider_holo_light.png new file mode 100755 index 0000000000000..2f97a290c52db Binary files /dev/null and b/core/res/res/drawable-hdpi/cab_divider_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/cab_divider_vertical_dark.png b/core/res/res/drawable-hdpi/cab_divider_vertical_dark.png new file mode 100755 index 0000000000000..b1f035c93d93e Binary files /dev/null and b/core/res/res/drawable-hdpi/cab_divider_vertical_dark.png differ diff --git a/core/res/res/drawable-hdpi/cab_divider_vertical_light.png b/core/res/res/drawable-hdpi/cab_divider_vertical_light.png new file mode 100755 index 0000000000000..2183b128ce33b Binary files /dev/null and b/core/res/res/drawable-hdpi/cab_divider_vertical_light.png differ diff --git a/core/res/res/drawable-hdpi/cab_holo_dark.9.png b/core/res/res/drawable-hdpi/cab_holo_dark.9.png new file mode 100755 index 0000000000000..662d63ce4233a Binary files /dev/null and b/core/res/res/drawable-hdpi/cab_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/cab_holo_light.9.png b/core/res/res/drawable-hdpi/cab_holo_light.9.png new file mode 100755 index 0000000000000..e8cbde1956092 Binary files /dev/null and b/core/res/res/drawable-hdpi/cab_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/cab_ic_close_focused_holo.png b/core/res/res/drawable-hdpi/cab_ic_close_focused_holo.png new file mode 100755 index 0000000000000..861e0a131a389 Binary files /dev/null and b/core/res/res/drawable-hdpi/cab_ic_close_focused_holo.png differ diff --git a/core/res/res/drawable-hdpi/cab_ic_close_normal_holo.png b/core/res/res/drawable-hdpi/cab_ic_close_normal_holo.png new file mode 100755 index 0000000000000..036f362cabe95 Binary files /dev/null and b/core/res/res/drawable-hdpi/cab_ic_close_normal_holo.png differ diff --git a/core/res/res/drawable-hdpi/cab_ic_close_pressed_holo.png b/core/res/res/drawable-hdpi/cab_ic_close_pressed_holo.png new file mode 100755 index 0000000000000..be8c2fffedd8e Binary files /dev/null and b/core/res/res/drawable-hdpi/cab_ic_close_pressed_holo.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_disabled_off_holo_dark.png b/core/res/res/drawable-hdpi/checkbox_disabled_off_holo_dark.png new file mode 100644 index 0000000000000..6de74a7b4ac20 Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_disabled_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_disabled_off_holo_light.png b/core/res/res/drawable-hdpi/checkbox_disabled_off_holo_light.png new file mode 100644 index 0000000000000..a0e201d329330 Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_disabled_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_disabled_on_holo_dark.png b/core/res/res/drawable-hdpi/checkbox_disabled_on_holo_dark.png new file mode 100644 index 0000000000000..9bb69c43639f6 Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_disabled_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_disabled_on_holo_light.png b/core/res/res/drawable-hdpi/checkbox_disabled_on_holo_light.png new file mode 100644 index 0000000000000..bffc5aaaf3bfc Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_disabled_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_focused_off_holo_dark.png b/core/res/res/drawable-hdpi/checkbox_focused_off_holo_dark.png new file mode 100644 index 0000000000000..bbe04b62d739f Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_focused_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_focused_off_holo_light.png b/core/res/res/drawable-hdpi/checkbox_focused_off_holo_light.png new file mode 100644 index 0000000000000..62f1efa51adab Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_focused_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_focused_on_holo_dark.png b/core/res/res/drawable-hdpi/checkbox_focused_on_holo_dark.png new file mode 100644 index 0000000000000..c4026a80313ca Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_focused_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_focused_on_holo_light.png b/core/res/res/drawable-hdpi/checkbox_focused_on_holo_light.png new file mode 100644 index 0000000000000..409aa3e6a198d Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_focused_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_normal_off_holo_dark.png b/core/res/res/drawable-hdpi/checkbox_normal_off_holo_dark.png new file mode 100644 index 0000000000000..10f1bc47369ed Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_normal_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_normal_off_holo_light.png b/core/res/res/drawable-hdpi/checkbox_normal_off_holo_light.png new file mode 100644 index 0000000000000..20a1efa391aa2 Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_normal_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_normal_on_holo_dark.png b/core/res/res/drawable-hdpi/checkbox_normal_on_holo_dark.png new file mode 100644 index 0000000000000..0a10ec833955f Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_normal_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_normal_on_holo_light.png b/core/res/res/drawable-hdpi/checkbox_normal_on_holo_light.png new file mode 100644 index 0000000000000..34b53ee57e7d6 Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_normal_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_pressed_off_holo_dark.png b/core/res/res/drawable-hdpi/checkbox_pressed_off_holo_dark.png new file mode 100644 index 0000000000000..7f1462078a1c3 Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_pressed_off_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_pressed_off_holo_light.png b/core/res/res/drawable-hdpi/checkbox_pressed_off_holo_light.png new file mode 100644 index 0000000000000..cabf93664ca48 Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_pressed_off_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_pressed_on_holo_dark.png b/core/res/res/drawable-hdpi/checkbox_pressed_on_holo_dark.png new file mode 100644 index 0000000000000..bcddb3141ffe8 Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_pressed_on_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/checkbox_pressed_on_holo_light.png b/core/res/res/drawable-hdpi/checkbox_pressed_on_holo_light.png new file mode 100644 index 0000000000000..84160e5246c5f Binary files /dev/null and b/core/res/res/drawable-hdpi/checkbox_pressed_on_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/dialog_bottom_holo.9.png b/core/res/res/drawable-hdpi/dialog_bottom_holo.9.png new file mode 100644 index 0000000000000..3a84de9541398 Binary files /dev/null and b/core/res/res/drawable-hdpi/dialog_bottom_holo.9.png differ diff --git a/core/res/res/drawable-hdpi/dialog_full_holo.9.png b/core/res/res/drawable-hdpi/dialog_full_holo.9.png new file mode 100644 index 0000000000000..5d2e4e1da98b2 Binary files /dev/null and b/core/res/res/drawable-hdpi/dialog_full_holo.9.png differ diff --git a/core/res/res/drawable-hdpi/dialog_middle_holo.9.png b/core/res/res/drawable-hdpi/dialog_middle_holo.9.png new file mode 100644 index 0000000000000..dc5e79d25e78d Binary files /dev/null and b/core/res/res/drawable-hdpi/dialog_middle_holo.9.png differ diff --git a/core/res/res/drawable-hdpi/dialog_top_holo.9.png b/core/res/res/drawable-hdpi/dialog_top_holo.9.png new file mode 100644 index 0000000000000..0275c18d7ed52 Binary files /dev/null and b/core/res/res/drawable-hdpi/dialog_top_holo.9.png differ diff --git a/core/res/res/drawable-hdpi/divider_horizontal_holo_dark.9.png b/core/res/res/drawable-hdpi/divider_horizontal_holo_dark.9.png new file mode 100644 index 0000000000000..e8e1deb08a7b3 Binary files /dev/null and b/core/res/res/drawable-hdpi/divider_horizontal_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/divider_horizontal_holo_light.9.png b/core/res/res/drawable-hdpi/divider_horizontal_holo_light.9.png new file mode 100644 index 0000000000000..9e6cbbe9e40ed Binary files /dev/null and b/core/res/res/drawable-hdpi/divider_horizontal_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/divider_vertical_holo_dark.9.png b/core/res/res/drawable-hdpi/divider_vertical_holo_dark.9.png new file mode 100644 index 0000000000000..deacb73038166 Binary files /dev/null and b/core/res/res/drawable-hdpi/divider_vertical_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/divider_vertical_holo_light.9.png b/core/res/res/drawable-hdpi/divider_vertical_holo_light.9.png new file mode 100644 index 0000000000000..cd2c826874bc2 Binary files /dev/null and b/core/res/res/drawable-hdpi/divider_vertical_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/ic_dialog_close_normal_holo.png b/core/res/res/drawable-hdpi/ic_dialog_close_normal_holo.png new file mode 100644 index 0000000000000..5ee5bb8f2bd27 Binary files /dev/null and b/core/res/res/drawable-hdpi/ic_dialog_close_normal_holo.png differ diff --git a/core/res/res/drawable-hdpi/ic_dialog_close_pressed_holo.png b/core/res/res/drawable-hdpi/ic_dialog_close_pressed_holo.png new file mode 100644 index 0000000000000..792db0695161e Binary files /dev/null and b/core/res/res/drawable-hdpi/ic_dialog_close_pressed_holo.png differ diff --git a/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png b/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png new file mode 100644 index 0000000000000..e2085751e09c3 Binary files /dev/null and b/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png differ diff --git a/core/res/res/drawable-hdpi/tab_arrow_left_holo_dark.png b/core/res/res/drawable-hdpi/tab_arrow_left_holo_dark.png new file mode 100644 index 0000000000000..cfd6f785c8803 Binary files /dev/null and b/core/res/res/drawable-hdpi/tab_arrow_left_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/tab_arrow_left_holo_light.png b/core/res/res/drawable-hdpi/tab_arrow_left_holo_light.png new file mode 100644 index 0000000000000..036aa8c0b6ad2 Binary files /dev/null and b/core/res/res/drawable-hdpi/tab_arrow_left_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/tab_arrow_right_holo_dark.png b/core/res/res/drawable-hdpi/tab_arrow_right_holo_dark.png new file mode 100644 index 0000000000000..b226038795616 Binary files /dev/null and b/core/res/res/drawable-hdpi/tab_arrow_right_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/tab_arrow_right_holo_light.png b/core/res/res/drawable-hdpi/tab_arrow_right_holo_light.png new file mode 100644 index 0000000000000..0e5fbe671c01f Binary files /dev/null and b/core/res/res/drawable-hdpi/tab_arrow_right_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/tab_divider_holo_dark.png b/core/res/res/drawable-hdpi/tab_divider_holo_dark.png new file mode 100644 index 0000000000000..112cb04b829e9 Binary files /dev/null and b/core/res/res/drawable-hdpi/tab_divider_holo_dark.png differ diff --git a/core/res/res/drawable-hdpi/tab_divider_holo_light.png b/core/res/res/drawable-hdpi/tab_divider_holo_light.png new file mode 100644 index 0000000000000..1bf4d386881a5 Binary files /dev/null and b/core/res/res/drawable-hdpi/tab_divider_holo_light.png differ diff --git a/core/res/res/drawable-hdpi/tab_selector_holo_dark.9.png b/core/res/res/drawable-hdpi/tab_selector_holo_dark.9.png new file mode 100644 index 0000000000000..f01b9bc3f92e2 Binary files /dev/null and b/core/res/res/drawable-hdpi/tab_selector_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/tab_strip_holo.9.png b/core/res/res/drawable-hdpi/tab_strip_holo.9.png new file mode 100644 index 0000000000000..d937f6b9e2a30 Binary files /dev/null and b/core/res/res/drawable-hdpi/tab_strip_holo.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png index c67d04d2b687f..7ec2192421678 100644 Binary files a/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png and b/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png index 1292ebfb64f54..c03e4f6bb4b2c 100644 Binary files a/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png and b/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png index a39982afca6ef..6642717626228 100644 Binary files a/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png and b/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png index 1f224b9448fac..957275241b31a 100644 Binary files a/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png and b/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_disabled_selected_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_disabled_selected_holo_dark.9.png index 66f18cc0d9ed2..0ad248c160517 100644 Binary files a/core/res/res/drawable-hdpi/textfield_disabled_selected_holo_dark.9.png and b/core/res/res/drawable-hdpi/textfield_disabled_selected_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_disabled_selected_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_disabled_selected_holo_light.9.png index 2664384c3076e..b7a07c4a0bd89 100644 Binary files a/core/res/res/drawable-hdpi/textfield_disabled_selected_holo_light.9.png and b/core/res/res/drawable-hdpi/textfield_disabled_selected_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_pressed_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_pressed_holo_dark.9.png index bbf53c5070ed2..a271ac9bfe45b 100644 Binary files a/core/res/res/drawable-hdpi/textfield_pressed_holo_dark.9.png and b/core/res/res/drawable-hdpi/textfield_pressed_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_pressed_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_pressed_holo_light.9.png index ce49b8d5dffda..521722dcaa4e4 100644 Binary files a/core/res/res/drawable-hdpi/textfield_pressed_holo_light.9.png and b/core/res/res/drawable-hdpi/textfield_pressed_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_search_default_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_search_default_holo_dark.9.png new file mode 100644 index 0000000000000..5b62564818b78 Binary files /dev/null and b/core/res/res/drawable-hdpi/textfield_search_default_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_search_default_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_search_default_holo_light.9.png new file mode 100644 index 0000000000000..881edeb6bc644 Binary files /dev/null and b/core/res/res/drawable-hdpi/textfield_search_default_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_search_selected_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_search_selected_holo_dark.9.png new file mode 100644 index 0000000000000..cb3f35b4e37b4 Binary files /dev/null and b/core/res/res/drawable-hdpi/textfield_search_selected_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_search_selected_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_search_selected_holo_light.9.png new file mode 100644 index 0000000000000..742b13760ce18 Binary files /dev/null and b/core/res/res/drawable-hdpi/textfield_search_selected_holo_light.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_selected_holo_dark.9.png b/core/res/res/drawable-hdpi/textfield_selected_holo_dark.9.png index bbf53c5070ed2..a271ac9bfe45b 100644 Binary files a/core/res/res/drawable-hdpi/textfield_selected_holo_dark.9.png and b/core/res/res/drawable-hdpi/textfield_selected_holo_dark.9.png differ diff --git a/core/res/res/drawable-hdpi/textfield_selected_holo_light.9.png b/core/res/res/drawable-hdpi/textfield_selected_holo_light.9.png index ce49b8d5dffda..521722dcaa4e4 100644 Binary files a/core/res/res/drawable-hdpi/textfield_selected_holo_light.9.png and b/core/res/res/drawable-hdpi/textfield_selected_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_dark.png index a603fb1aff9ca..3fac4aa8ea397 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_light.png index 69e9ff9eb1a21..3da9a46f44c41 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_off_disable_focused_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_disable_holo_dark.png index a603fb1aff9ca..3fac4aa8ea397 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_disable_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_off_disable_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_disable_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_disable_holo_light.png index 69e9ff9eb1a21..3da9a46f44c41 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_disable_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_off_disable_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png index 5e44c293ca33f..b03f3569c97ee 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_holo_light.png index 5b2ec928e324c..9dbbd49c30aa3 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_dark.png index 611bb1d7a05b1..0dcb9de6595da 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_light.png index 5a0ea441f37aa..b25fdc498e499 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_off_pressed_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_selected_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_off_selected_holo_dark.png index aa28df22a4fb4..89ea3a8b237b9 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_selected_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_off_selected_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_off_selected_holo_light.png b/core/res/res/drawable-mdpi/btn_check_off_selected_holo_light.png index ade1136e02140..3fa45d9eb8560 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_off_selected_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_off_selected_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_dark.png index f19972a447b0c..48cc017c4e4b1 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_light.png index 13ef46e2c39d5..c9ebbca33b80c 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_on_disable_focused_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_disable_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_disable_holo_dark.png index f19972a447b0c..48cc017c4e4b1 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_disable_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_on_disable_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_disable_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_disable_holo_light.png index 13ef46e2c39d5..c9ebbca33b80c 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_disable_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_on_disable_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png index 130d5629237c8..ca4d509e7261c 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_holo_light.png index 6b7808bbb6a66..158f3a1cd181b 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_dark.png index df753f51eb495..0722cdacf3eb5 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_light.png index 6a4dd2ce7c76a..4de166e56e18b 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_on_pressed_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_selected_holo_dark.png b/core/res/res/drawable-mdpi/btn_check_on_selected_holo_dark.png index 7586881cc458a..5b93f8b6e9f79 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_selected_holo_dark.png and b/core/res/res/drawable-mdpi/btn_check_on_selected_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_check_on_selected_holo_light.png b/core/res/res/drawable-mdpi/btn_check_on_selected_holo_light.png index 24701ce9d59a6..74ab2504e5820 100644 Binary files a/core/res/res/drawable-mdpi/btn_check_on_selected_holo_light.png and b/core/res/res/drawable-mdpi/btn_check_on_selected_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_dark.9.png new file mode 100644 index 0000000000000..9bc1ee8d10786 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png new file mode 100644 index 0000000000000..cc643eaef6491 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_disabled_holo_dark.9.png new file mode 100644 index 0000000000000..0586d52ea584b Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_disabled_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_disabled_holo_light.9.png new file mode 100644 index 0000000000000..dd6c1a034f2fa Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_disabled_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_focused_holo_dark.9.png new file mode 100644 index 0000000000000..e8f07cb00429d Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_focused_holo_light.9.png new file mode 100644 index 0000000000000..0685f1edc8b6c Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_normal_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_normal_holo_dark.9.png new file mode 100644 index 0000000000000..6b33fa426eda2 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_normal_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_normal_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_normal_holo_light.9.png new file mode 100644 index 0000000000000..eb728ed413a42 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_normal_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_default_pressed_holo_dark.9.png new file mode 100644 index 0000000000000..4a15d9d687389 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_pressed_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_default_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/btn_default_pressed_holo_light.9.png new file mode 100644 index 0000000000000..6718ff7185909 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_default_pressed_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_disabled_off_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_disabled_off_holo_dark.png new file mode 100644 index 0000000000000..f21142e82b6cb Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_disabled_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_disabled_off_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_disabled_off_holo_light.png new file mode 100644 index 0000000000000..a1031fc23ceee Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_disabled_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_disabled_on_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_disabled_on_holo_dark.png new file mode 100644 index 0000000000000..61243c55217b8 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_disabled_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_disabled_on_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_disabled_on_holo_light.png new file mode 100644 index 0000000000000..faa55e0b54824 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_disabled_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_focused_off_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_focused_off_holo_dark.png new file mode 100644 index 0000000000000..0c645dae4ce97 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_focused_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_focused_off_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_focused_off_holo_light.png new file mode 100644 index 0000000000000..5efc3215d51ee Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_focused_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_focused_on_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_focused_on_holo_dark.png new file mode 100644 index 0000000000000..96bcdc5293ddb Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_focused_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_focused_on_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_focused_on_holo_light.png new file mode 100644 index 0000000000000..5efc3215d51ee Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_focused_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_normal_off_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_normal_off_holo_dark.png new file mode 100644 index 0000000000000..96413ef0e1f32 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_normal_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_normal_off_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_normal_off_holo_light.png new file mode 100644 index 0000000000000..1cb5432e8c673 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_normal_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_normal_on_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_normal_on_holo_dark.png new file mode 100644 index 0000000000000..2e8404ad1fef0 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_normal_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_normal_on_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_normal_on_holo_light.png new file mode 100644 index 0000000000000..b3e14b1f94659 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_normal_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png index 16c1c6bc7b51e..a3cef04d9d41c 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png and b/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png index e8287f30693e4..e8def559e5362 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png and b/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_dark.png index b25217b6c2140..1a9310b43c96a 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_dark.png and b/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_light.png index b63b9b0250e61..bc28b5b1a6fe2 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_light.png and b/core/res/res/drawable-mdpi/btn_radio_off_pressed_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_off_selected_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_off_selected_holo_dark.png index bef757299c1a8..2b0ddd1177e8c 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_off_selected_holo_dark.png and b/core/res/res/drawable-mdpi/btn_radio_off_selected_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_off_selected_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_off_selected_holo_light.png index af754e145cfa6..745cf192bc08a 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_off_selected_holo_light.png and b/core/res/res/drawable-mdpi/btn_radio_off_selected_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png index 4ed74712e28c8..9954500178b04 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png and b/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png index 62aaa41318d1b..fa67a4397e584 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png and b/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_dark.png index 7cf91c6c7fa9f..c15c310941d95 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_dark.png and b/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_light.png index 0d93507b66f4b..aa07c5ac02969 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_light.png and b/core/res/res/drawable-mdpi/btn_radio_on_pressed_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_on_selected_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_on_selected_holo_dark.png index 56f6f5b43fa80..e96a74f11277a 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_on_selected_holo_dark.png and b/core/res/res/drawable-mdpi/btn_radio_on_selected_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_on_selected_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_on_selected_holo_light.png index 48dd8e9d3c6ce..c51c96c1ddd65 100644 Binary files a/core/res/res/drawable-mdpi/btn_radio_on_selected_holo_light.png and b/core/res/res/drawable-mdpi/btn_radio_on_selected_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_pressed_off_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_pressed_off_holo_dark.png new file mode 100644 index 0000000000000..5f74c7054886c Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_pressed_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_pressed_off_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_pressed_off_holo_light.png new file mode 100644 index 0000000000000..408e50e31e3fc Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_pressed_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_pressed_on_holo_dark.png b/core/res/res/drawable-mdpi/btn_radio_pressed_on_holo_dark.png new file mode 100644 index 0000000000000..ff60bc2b7ac86 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_pressed_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/btn_radio_pressed_on_holo_light.png b/core/res/res/drawable-mdpi/btn_radio_pressed_on_holo_light.png new file mode 100644 index 0000000000000..2125c24a769c9 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_radio_pressed_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_dark.9.png new file mode 100755 index 0000000000000..7d1e16df0a4c0 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_light.9.png new file mode 100755 index 0000000000000..92e86cd0e67e6 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_dark.9.png new file mode 100755 index 0000000000000..1cf473b2efd58 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_light.9.png new file mode 100755 index 0000000000000..d6f2125d461ce Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_dark.9.png new file mode 100755 index 0000000000000..31f7f8c3eebf4 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_light.9.png new file mode 100755 index 0000000000000..82425d52a9f05 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_holo.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_holo.9.png new file mode 100755 index 0000000000000..0ca659ef42ab3 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_holo.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_dark.9.png new file mode 100755 index 0000000000000..16f19fc24859a Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_light.9.png new file mode 100755 index 0000000000000..e2c770274351d Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_dark.9.png new file mode 100755 index 0000000000000..d61470cc489c5 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_light.9.png new file mode 100755 index 0000000000000..4019fee181544 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_dark.9.png new file mode 100755 index 0000000000000..ba354e3643843 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_light.9.png new file mode 100755 index 0000000000000..9391b2ef156d1 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_dark.9.png new file mode 100755 index 0000000000000..601ff2ccfcd10 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_light.9.png new file mode 100755 index 0000000000000..90c259a955a5b Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_dark.9.png new file mode 100755 index 0000000000000..857c757d29a9d Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_light.9.png new file mode 100755 index 0000000000000..ef16a48a44f58 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_holo.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_holo.9.png new file mode 100755 index 0000000000000..66cbe48cf9413 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_holo.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_dark.9.png new file mode 100755 index 0000000000000..d47ec8f1b0f6f Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_light.9.png new file mode 100755 index 0000000000000..2951caf5017e8 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_dark.9.png new file mode 100755 index 0000000000000..141b4ddb1a409 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_light.9.png new file mode 100755 index 0000000000000..913aed51d9f76 Binary files /dev/null and b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/cab_divider_holo_dark.png b/core/res/res/drawable-mdpi/cab_divider_holo_dark.png new file mode 100755 index 0000000000000..57cc8a4426f62 Binary files /dev/null and b/core/res/res/drawable-mdpi/cab_divider_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/cab_divider_holo_light.png b/core/res/res/drawable-mdpi/cab_divider_holo_light.png new file mode 100755 index 0000000000000..ec85701a44e46 Binary files /dev/null and b/core/res/res/drawable-mdpi/cab_divider_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/cab_divider_vertical_dark.png b/core/res/res/drawable-mdpi/cab_divider_vertical_dark.png new file mode 100755 index 0000000000000..f7ed6dff8ecf1 Binary files /dev/null and b/core/res/res/drawable-mdpi/cab_divider_vertical_dark.png differ diff --git a/core/res/res/drawable-mdpi/cab_divider_vertical_light.png b/core/res/res/drawable-mdpi/cab_divider_vertical_light.png new file mode 100755 index 0000000000000..73ac0d9ed4d87 Binary files /dev/null and b/core/res/res/drawable-mdpi/cab_divider_vertical_light.png differ diff --git a/core/res/res/drawable-mdpi/cab_holo_dark.9.png b/core/res/res/drawable-mdpi/cab_holo_dark.9.png new file mode 100755 index 0000000000000..6c85300026c38 Binary files /dev/null and b/core/res/res/drawable-mdpi/cab_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/cab_holo_light.9.png b/core/res/res/drawable-mdpi/cab_holo_light.9.png new file mode 100755 index 0000000000000..c82352a4ac23c Binary files /dev/null and b/core/res/res/drawable-mdpi/cab_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/cab_ic_close_focused_holo.png b/core/res/res/drawable-mdpi/cab_ic_close_focused_holo.png new file mode 100755 index 0000000000000..df170c4c03503 Binary files /dev/null and b/core/res/res/drawable-mdpi/cab_ic_close_focused_holo.png differ diff --git a/core/res/res/drawable-mdpi/cab_ic_close_normal_holo.png b/core/res/res/drawable-mdpi/cab_ic_close_normal_holo.png new file mode 100755 index 0000000000000..9482ce70a458a Binary files /dev/null and b/core/res/res/drawable-mdpi/cab_ic_close_normal_holo.png differ diff --git a/core/res/res/drawable-mdpi/cab_ic_close_pressed_holo.png b/core/res/res/drawable-mdpi/cab_ic_close_pressed_holo.png new file mode 100755 index 0000000000000..d115d20249c64 Binary files /dev/null and b/core/res/res/drawable-mdpi/cab_ic_close_pressed_holo.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_disabled_off_holo_dark.png b/core/res/res/drawable-mdpi/checkbox_disabled_off_holo_dark.png new file mode 100644 index 0000000000000..e1094beac5cb3 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_disabled_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_disabled_off_holo_light.png b/core/res/res/drawable-mdpi/checkbox_disabled_off_holo_light.png new file mode 100644 index 0000000000000..c17377c117655 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_disabled_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_disabled_on_holo_dark.png b/core/res/res/drawable-mdpi/checkbox_disabled_on_holo_dark.png new file mode 100644 index 0000000000000..f2c529018666c Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_disabled_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_disabled_on_holo_light.png b/core/res/res/drawable-mdpi/checkbox_disabled_on_holo_light.png new file mode 100644 index 0000000000000..06bd9033c6b8a Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_disabled_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_focused_off_holo_dark.png b/core/res/res/drawable-mdpi/checkbox_focused_off_holo_dark.png new file mode 100644 index 0000000000000..be624c23c90ba Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_focused_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_focused_off_holo_light.png b/core/res/res/drawable-mdpi/checkbox_focused_off_holo_light.png new file mode 100644 index 0000000000000..2493ce2347f64 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_focused_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_focused_on_holo_dark.png b/core/res/res/drawable-mdpi/checkbox_focused_on_holo_dark.png new file mode 100644 index 0000000000000..7cdc1dfa96f29 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_focused_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_focused_on_holo_light.png b/core/res/res/drawable-mdpi/checkbox_focused_on_holo_light.png new file mode 100644 index 0000000000000..f977e72bae3c6 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_focused_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_normal_off_holo_dark.png b/core/res/res/drawable-mdpi/checkbox_normal_off_holo_dark.png new file mode 100644 index 0000000000000..f824f76e2d56f Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_normal_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_normal_off_holo_light.png b/core/res/res/drawable-mdpi/checkbox_normal_off_holo_light.png new file mode 100644 index 0000000000000..a76f68c858413 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_normal_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_normal_on_holo_dark.png b/core/res/res/drawable-mdpi/checkbox_normal_on_holo_dark.png new file mode 100644 index 0000000000000..e4fd41804b4d1 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_normal_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_normal_on_holo_light.png b/core/res/res/drawable-mdpi/checkbox_normal_on_holo_light.png new file mode 100644 index 0000000000000..d572ef59f2fed Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_normal_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_pressed_off_holo_dark.png b/core/res/res/drawable-mdpi/checkbox_pressed_off_holo_dark.png new file mode 100644 index 0000000000000..686707e91e501 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_pressed_off_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_pressed_off_holo_light.png b/core/res/res/drawable-mdpi/checkbox_pressed_off_holo_light.png new file mode 100644 index 0000000000000..17dd1dab16283 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_pressed_off_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_pressed_on_holo_dark.png b/core/res/res/drawable-mdpi/checkbox_pressed_on_holo_dark.png new file mode 100644 index 0000000000000..8cf2b1bb00dd1 Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_pressed_on_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/checkbox_pressed_on_holo_light.png b/core/res/res/drawable-mdpi/checkbox_pressed_on_holo_light.png new file mode 100644 index 0000000000000..c2df6da1e10fa Binary files /dev/null and b/core/res/res/drawable-mdpi/checkbox_pressed_on_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/dialog_bottom_holo.9.png b/core/res/res/drawable-mdpi/dialog_bottom_holo.9.png new file mode 100644 index 0000000000000..cb3d0f29dd58a Binary files /dev/null and b/core/res/res/drawable-mdpi/dialog_bottom_holo.9.png differ diff --git a/core/res/res/drawable-mdpi/dialog_full_holo.9.png b/core/res/res/drawable-mdpi/dialog_full_holo.9.png new file mode 100644 index 0000000000000..0ec942153ed21 Binary files /dev/null and b/core/res/res/drawable-mdpi/dialog_full_holo.9.png differ diff --git a/core/res/res/drawable-mdpi/dialog_middle_holo.9.png b/core/res/res/drawable-mdpi/dialog_middle_holo.9.png new file mode 100644 index 0000000000000..36da5ca20e69a Binary files /dev/null and b/core/res/res/drawable-mdpi/dialog_middle_holo.9.png differ diff --git a/core/res/res/drawable-mdpi/dialog_top_holo.9.png b/core/res/res/drawable-mdpi/dialog_top_holo.9.png new file mode 100644 index 0000000000000..1ed519b61db42 Binary files /dev/null and b/core/res/res/drawable-mdpi/dialog_top_holo.9.png differ diff --git a/core/res/res/drawable-mdpi/divider_horizontal_holo_dark.9.png b/core/res/res/drawable-mdpi/divider_horizontal_holo_dark.9.png new file mode 100644 index 0000000000000..d6548c6339462 Binary files /dev/null and b/core/res/res/drawable-mdpi/divider_horizontal_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/divider_horizontal_holo_light.9.png b/core/res/res/drawable-mdpi/divider_horizontal_holo_light.9.png new file mode 100644 index 0000000000000..9a42dd2416e2a Binary files /dev/null and b/core/res/res/drawable-mdpi/divider_horizontal_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/divider_vertical_holo_dark.9.png b/core/res/res/drawable-mdpi/divider_vertical_holo_dark.9.png new file mode 100644 index 0000000000000..4c6968cb9a9df Binary files /dev/null and b/core/res/res/drawable-mdpi/divider_vertical_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/divider_vertical_holo_light.9.png b/core/res/res/drawable-mdpi/divider_vertical_holo_light.9.png new file mode 100644 index 0000000000000..7ddf1b63e2fa7 Binary files /dev/null and b/core/res/res/drawable-mdpi/divider_vertical_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/ic_dialog_close_normal_holo.png b/core/res/res/drawable-mdpi/ic_dialog_close_normal_holo.png new file mode 100644 index 0000000000000..7f2a0292688e1 Binary files /dev/null and b/core/res/res/drawable-mdpi/ic_dialog_close_normal_holo.png differ diff --git a/core/res/res/drawable-mdpi/ic_dialog_close_pressed_holo.png b/core/res/res/drawable-mdpi/ic_dialog_close_pressed_holo.png new file mode 100644 index 0000000000000..daa8e1883f1ce Binary files /dev/null and b/core/res/res/drawable-mdpi/ic_dialog_close_pressed_holo.png differ diff --git a/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png b/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png new file mode 100644 index 0000000000000..179f2deef7dfd Binary files /dev/null and b/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png differ diff --git a/core/res/res/drawable-mdpi/tab_arrow_left_holo_dark.png b/core/res/res/drawable-mdpi/tab_arrow_left_holo_dark.png new file mode 100644 index 0000000000000..4f8bafe08ce04 Binary files /dev/null and b/core/res/res/drawable-mdpi/tab_arrow_left_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/tab_arrow_left_holo_light.png b/core/res/res/drawable-mdpi/tab_arrow_left_holo_light.png new file mode 100644 index 0000000000000..8e225fce686ed Binary files /dev/null and b/core/res/res/drawable-mdpi/tab_arrow_left_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/tab_arrow_right_holo_dark.png b/core/res/res/drawable-mdpi/tab_arrow_right_holo_dark.png new file mode 100644 index 0000000000000..0a8006de9829c Binary files /dev/null and b/core/res/res/drawable-mdpi/tab_arrow_right_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/tab_arrow_right_holo_light.png b/core/res/res/drawable-mdpi/tab_arrow_right_holo_light.png new file mode 100644 index 0000000000000..85aae47d55f2b Binary files /dev/null and b/core/res/res/drawable-mdpi/tab_arrow_right_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/tab_divider_holo_dark.png b/core/res/res/drawable-mdpi/tab_divider_holo_dark.png new file mode 100644 index 0000000000000..89d7b8bec2e35 Binary files /dev/null and b/core/res/res/drawable-mdpi/tab_divider_holo_dark.png differ diff --git a/core/res/res/drawable-mdpi/tab_divider_holo_light.png b/core/res/res/drawable-mdpi/tab_divider_holo_light.png new file mode 100644 index 0000000000000..878b2b42aa83b Binary files /dev/null and b/core/res/res/drawable-mdpi/tab_divider_holo_light.png differ diff --git a/core/res/res/drawable-mdpi/tab_selector_holo_dark.9.png b/core/res/res/drawable-mdpi/tab_selector_holo_dark.9.png new file mode 100644 index 0000000000000..30d30df42b1dd Binary files /dev/null and b/core/res/res/drawable-mdpi/tab_selector_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png index a9a2cc68d8a8b..3a5f36d38db2a 100644 Binary files a/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png and b/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png index 36003cfda488e..b8cc76f83699e 100644 Binary files a/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png and b/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png index cec82dd0bab23..a1f0c71a82f36 100644 Binary files a/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png and b/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png index 8a9b11fb0f94f..71e310397ddd8 100644 Binary files a/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png and b/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_disabled_selected_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_disabled_selected_holo_dark.9.png index 545924c1352e2..ac6d406aa434c 100644 Binary files a/core/res/res/drawable-mdpi/textfield_disabled_selected_holo_dark.9.png and b/core/res/res/drawable-mdpi/textfield_disabled_selected_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_disabled_selected_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_disabled_selected_holo_light.9.png index 53ee26c937b03..bb6e9531deef5 100644 Binary files a/core/res/res/drawable-mdpi/textfield_disabled_selected_holo_light.9.png and b/core/res/res/drawable-mdpi/textfield_disabled_selected_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_pressed_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_pressed_holo_dark.9.png index 0e7c24db00665..7667d958854d9 100644 Binary files a/core/res/res/drawable-mdpi/textfield_pressed_holo_dark.9.png and b/core/res/res/drawable-mdpi/textfield_pressed_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_pressed_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_pressed_holo_light.9.png index fee09a635847d..269affd70c36d 100644 Binary files a/core/res/res/drawable-mdpi/textfield_pressed_holo_light.9.png and b/core/res/res/drawable-mdpi/textfield_pressed_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_search_default_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_search_default_holo_dark.9.png new file mode 100644 index 0000000000000..354994883d1fc Binary files /dev/null and b/core/res/res/drawable-mdpi/textfield_search_default_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_search_default_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_search_default_holo_light.9.png new file mode 100644 index 0000000000000..6db03cb8fdc17 Binary files /dev/null and b/core/res/res/drawable-mdpi/textfield_search_default_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_search_selected_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_search_selected_holo_dark.9.png new file mode 100644 index 0000000000000..670439a2dcd9d Binary files /dev/null and b/core/res/res/drawable-mdpi/textfield_search_selected_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_search_selected_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_search_selected_holo_light.9.png new file mode 100644 index 0000000000000..90e26e290dec7 Binary files /dev/null and b/core/res/res/drawable-mdpi/textfield_search_selected_holo_light.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_selected_holo_dark.9.png b/core/res/res/drawable-mdpi/textfield_selected_holo_dark.9.png index 0e7c24db00665..7667d958854d9 100644 Binary files a/core/res/res/drawable-mdpi/textfield_selected_holo_dark.9.png and b/core/res/res/drawable-mdpi/textfield_selected_holo_dark.9.png differ diff --git a/core/res/res/drawable-mdpi/textfield_selected_holo_light.9.png b/core/res/res/drawable-mdpi/textfield_selected_holo_light.9.png index fee09a635847d..269affd70c36d 100644 Binary files a/core/res/res/drawable-mdpi/textfield_selected_holo_light.9.png and b/core/res/res/drawable-mdpi/textfield_selected_holo_light.9.png differ diff --git a/core/res/res/drawable/btn_default_holo_dark.xml b/core/res/res/drawable/btn_default_holo_dark.xml new file mode 100644 index 0000000000000..c250070b9723f --- /dev/null +++ b/core/res/res/drawable/btn_default_holo_dark.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + diff --git a/core/res/res/drawable/btn_toggle_holo_dark.xml b/core/res/res/drawable/btn_toggle_holo_dark.xml new file mode 100644 index 0000000000000..658ca9eef71ea --- /dev/null +++ b/core/res/res/drawable/btn_toggle_holo_dark.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/core/res/res/drawable/btn_toggle_holo_light.xml b/core/res/res/drawable/btn_toggle_holo_light.xml new file mode 100644 index 0000000000000..d3f101248e07a --- /dev/null +++ b/core/res/res/drawable/btn_toggle_holo_light.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/core/res/res/drawable/cab_ic_close_holo.xml b/core/res/res/drawable/cab_ic_close_holo.xml new file mode 100644 index 0000000000000..1baf7cc0b2b79 --- /dev/null +++ b/core/res/res/drawable/cab_ic_close_holo.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/core/res/res/layout/select_dialog.xml b/core/res/res/layout/select_dialog.xml index c665f7a7ed97b..94dcb6a349b34 100644 --- a/core/res/res/layout/select_dialog.xml +++ b/core/res/res/layout/select_dialog.xml @@ -30,5 +30,5 @@ android:layout_height="match_parent" android:layout_marginTop="5px" android:cacheColorHint="@null" - android:divider="@android:drawable/divider_horizontal_bright" + android:divider="?android:attr/listDividerAlertDialog" android:scrollbars="vertical" /> diff --git a/core/res/res/layout/select_dialog_item.xml b/core/res/res/layout/select_dialog_item.xml index 30fe02ef39c9d..96fdcc6b36d47 100644 --- a/core/res/res/layout/select_dialog_item.xml +++ b/core/res/res/layout/select_dialog_item.xml @@ -29,7 +29,7 @@ android:layout_height="wrap_content" android:minHeight="?android:attr/listPreferredItemHeight" android:textAppearance="?android:attr/textAppearanceLarge" - android:textColor="@android:color/primary_text_light_disable_only" + android:textColor="?android:attr/textColorAlertDialogListItem" android:gravity="center_vertical" android:paddingLeft="14dip" android:paddingRight="15dip" diff --git a/core/res/res/layout/select_dialog_multichoice.xml b/core/res/res/layout/select_dialog_multichoice.xml index b646a4c1eadc4..a9be014e44188 100644 --- a/core/res/res/layout/select_dialog_multichoice.xml +++ b/core/res/res/layout/select_dialog_multichoice.xml @@ -20,7 +20,7 @@ android:layout_height="wrap_content" android:minHeight="?android:attr/listPreferredItemHeight" android:textAppearance="?android:attr/textAppearanceLarge" - android:textColor="@android:color/primary_text_light_disable_only" + android:textColor="?android:attr/textColorAlertDialogListItem" android:gravity="center_vertical" android:paddingLeft="12dip" android:paddingRight="7dip" diff --git a/core/res/res/layout/select_dialog_singlechoice.xml b/core/res/res/layout/select_dialog_singlechoice.xml index c3c20731e6556..1b9c973587cd0 100644 --- a/core/res/res/layout/select_dialog_singlechoice.xml +++ b/core/res/res/layout/select_dialog_singlechoice.xml @@ -20,7 +20,7 @@ android:layout_height="wrap_content" android:minHeight="?android:attr/listPreferredItemHeight" android:textAppearance="?android:attr/textAppearanceLarge" - android:textColor="@android:color/primary_text_light_disable_only" + android:textColor="?android:attr/textColorAlertDialogListItem" android:gravity="center_vertical" android:paddingLeft="12dip" android:paddingRight="7dip" diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index 19b76abe2fe42..317b3f3261ced 100755 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -101,6 +101,9 @@ + + + @@ -197,6 +200,8 @@ + + - #ffefefef - #ff101010 + #fff3f3f3 + #ff000000 #ff000000 #ff000000 #ff000000 @@ -36,8 +36,8 @@ #ffffffff #ff000000 #00000000 - #ff101010 - #ffefefef + #ff000000 + #fff3f3f3 @android:color/background_light @android:color/background_dark #80ffffff @@ -103,5 +103,32 @@ #e69310 #fe0a5a + + #fff3f3f3 + #ff000000 + #ff000000 + #fff3f3f3 + @android:color/background_holo_light + @android:color/background_holo_dark + #80ffffff + #80000000 + @android:color/bright_foreground_holo_light + @android:color/bright_foreground_holo_dark + #bebebe + #80bebebe + #323232 + #80323232 + #808080 + #323232 + #80323232 + #bebebe + #80bebebe + #808080 + #cc475925 + #ccd2e461 + #cc475925 + #ccd2e461 + #5c5cff + #0000ee diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index cdeb899921382..adcbb10247d42 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -1358,6 +1358,8 @@ + + diff --git a/core/res/res/values/styles.xml b/core/res/res/values/styles.xml index ebaaada10d30c..1c18a03385838 100644 --- a/core/res/res/values/styles.xml +++ b/core/res/res/values/styles.xml @@ -984,4 +984,686 @@ @android:color/secondary_text_light + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/core/res/res/values/themes.xml b/core/res/res/values/themes.xml index 9425fc4743bab..9f9f59e2cb8f8 100644 --- a/core/res/res/values/themes.xml +++ b/core/res/res/values/themes.xml @@ -57,6 +57,7 @@ @android:color/highlighted_text_light @android:color/link_text_dark @android:color/link_text_light + @android:color/primary_text_light_disable_only @android:style/TextAppearance.Large @android:style/TextAppearance.Medium @@ -102,6 +103,8 @@ @android:drawable/activated_background + @android:drawable/divider_horizontal_bright + 40dip ?android:attr/expandableListPreferredItemPaddingLeft @@ -606,14 +609,230 @@ holographic theme are translucent on their brackground, so applications must ensure that any background they use with this theme is itself dark; otherwise, it will be difficult to see the widgets. The new - UI style also includes a full action bar by default. --> + UI style also includes a full action bar by default. + + Styles used by the Holo theme are named using the convention Type.Holo.Etc. + (For example, Widget.Holo.Button, TextAppearance.Holo.Widget.PopupMenu.Large.) + Specific resources used by Holo are named using the convention @type/foo_bar_baz_holo + with trailing _dark or _light specifiers if they are not shared between both light and + dark versions of the theme. --> - + + + + + + + + + + + + + + + +