diff options
311 files changed, 1779 insertions, 27 deletions
diff --git a/api/current.xml b/api/current.xml index 06eeba7603a6..570261fcd689 100644 --- a/api/current.xml +++ b/api/current.xml @@ -6829,6 +6829,17 @@ visibility="public" > </field> +<field name="listDividerAlertDialog" + type="int" + transient="false" + volatile="false" + value="16843590" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="listPopupWindowStyle" type="int" transient="false" @@ -9876,6 +9887,17 @@ visibility="public" > </field> +<field name="textColorAlertDialogListItem" + type="int" + transient="false" + volatile="false" + value="16843591" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="textColorHighlight" type="int" transient="false" diff --git a/core/java/android/app/AlertDialog.java b/core/java/android/app/AlertDialog.java index 61a8fc3312f9..92cedc4fdb1d 100644 --- a/core/java/android/app/AlertDialog.java +++ b/core/java/android/app/AlertDialog.java @@ -20,6 +20,7 @@ import android.content.Context; import android.content.DialogInterface; import android.database.Cursor; import android.graphics.drawable.Drawable; +import android.os.Build; import android.os.Bundle; import android.os.Message; import android.view.KeyEvent; @@ -56,7 +57,10 @@ public class AlertDialog extends Dialog implements DialogInterface { private AlertController mAlert; protected AlertDialog(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); } 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 74971364aafd..77f58601701e 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 8ba480d23bac..37f8738d8def 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 a0be0cde1f5d..04735bfa4d82 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 e8dfac99c4bc..8e2389b2e5c8 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 bdea0698cf59..07a5a22c0edc 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 521d41c3ec4b..381143c9f392 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 000000000000..6de4583f0b8e --- /dev/null +++ b/core/res/res/color/primary_text_disable_only_holo_dark.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@android:color/bright_foreground_dark_disabled"/> + <item android:color="@android:color/bright_foreground_dark"/> +</selector> + 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 000000000000..87a92c81e238 --- /dev/null +++ b/core/res/res/color/primary_text_disable_only_holo_light.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@android:color/bright_foreground_light_disabled"/> + <item android:color="@android:color/bright_foreground_light"/> +</selector> + 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 000000000000..80c68a4daa24 --- /dev/null +++ b/core/res/res/color/primary_text_focused_holo_dark.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_selected="true" android:color="@android:color/bright_foreground_dark_inverse" /> + <item android:state_activated="true" android:color="@android:color/bright_foreground_dark_inverse" /> + <item android:state_focused="true" android:color="@android:color/bright_foreground_dark_inverse" /> + <item android:state_pressed="true" android:color="@android:color/bright_foreground_dark_inverse" /> + <item android:color="@android:color/bright_foreground_dark" /> +</selector> + 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 000000000000..69ee30948506 --- /dev/null +++ b/core/res/res/color/primary_text_holo_dark.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@android:color/bright_foreground_dark_disabled"/> + <item android:state_window_focused="false" android:color="@android:color/bright_foreground_dark"/> + <item android:state_pressed="true" android:color="@android:color/bright_foreground_dark"/> + <item android:state_selected="true" android:color="@android:color/bright_foreground_dark"/> + <item android:state_activated="true" android:color="@android:color/bright_foreground_dark"/> + <item android:color="@android:color/bright_foreground_dark"/> <!-- not selected --> +</selector> 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 000000000000..a8d31cecafbf --- /dev/null +++ b/core/res/res/color/primary_text_holo_light.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="@android:color/bright_foreground_light_disabled"/> + <item android:state_window_focused="false" android:color="@android:color/bright_foreground_light"/> + <item android:state_pressed="true" android:color="@android:color/bright_foreground_light"/> + <item android:state_selected="true" android:color="@android:color/bright_foreground_light"/> + <item android:state_activated="true" android:color="@android:color/bright_foreground_light"/> + <item android:color="@android:color/bright_foreground_light"/> <!-- not selected --> + +</selector> + 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 000000000000..f45088f44fce --- /dev/null +++ b/core/res/res/color/primary_text_nodisable_holo_dark.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_selected="true" android:color="@android:color/bright_foreground_dark_inverse"/> + <item android:state_activated="true" android:color="@android:color/bright_foreground_dark_inverse"/> + <item android:color="@android:color/bright_foreground_dark"/> <!-- not selected --> +</selector> + 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 000000000000..331e8c3dd323 --- /dev/null +++ b/core/res/res/color/primary_text_nodisable_holo_light.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_selected="true" android:color="@android:color/bright_foreground_light"/> + <item android:state_activated="true" android:color="@android:color/bright_foreground_light"/> + <item android:color="@android:color/bright_foreground_light"/> <!-- not selected --> +</selector> + 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 000000000000..78093ba7e24c --- /dev/null +++ b/core/res/res/color/search_url_text_holo.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_pressed="true" android:color="@android:color/search_url_text_pressed"/> + <item android:state_selected="true" android:color="@android:color/search_url_text_selected"/> + <item android:color="@android:color/search_url_text_normal"/> <!-- not selected --> +</selector> 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 000000000000..376156e7427e --- /dev/null +++ b/core/res/res/color/secondary_text_holo_dark.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_window_focused="false" android:state_enabled="false" android:color="@android:color/dim_foreground_dark_disabled"/> + <item android:state_window_focused="false" android:color="@android:color/dim_foreground_dark"/> + <item android:state_selected="true" android:state_enabled="false" android:color="@android:color/dim_foreground_dark_inverse_disabled"/> + <item android:state_pressed="true" android:state_enabled="false" android:color="@android:color/dim_foreground_dark_inverse_disabled"/> + <item android:state_selected="true" android:color="@android:color/dim_foreground_dark_inverse"/> + <item android:state_activated="true" android:color="@android:color/bright_foreground_dark_inverse"/> + <item android:state_pressed="true" android:color="@android:color/dim_foreground_dark_inverse"/> + <item android:state_enabled="false" android:color="@android:color/dim_foreground_dark_disabled"/> + <item android:color="@android:color/dim_foreground_dark"/> <!-- not selected --> +</selector> 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 000000000000..b791aebef644 --- /dev/null +++ b/core/res/res/color/secondary_text_holo_light.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_window_focused="false" android:state_enabled="false" android:color="@android:color/dim_foreground_light_disabled"/> + <item android:state_window_focused="false" android:color="@android:color/dim_foreground_light"/> + <!-- Since there is only one selector (for both light and dark), the light's selected state shouldn't be inversed like the dark's. --> + <item android:state_pressed="true" android:state_enabled="false" android:color="@android:color/dim_foreground_light_disabled"/> + <item android:state_selected="true" android:state_enabled="false" android:color="@android:color/dim_foreground_light_disabled"/> + <item android:state_pressed="true" android:color="@android:color/dim_foreground_light"/> + <item android:state_selected="true" android:color="@android:color/dim_foreground_light"/> + <item android:state_activated="true" android:color="@android:color/bright_foreground_light"/> + <item android:state_enabled="false" android:color="@android:color/dim_foreground_light_disabled"/> + <item android:color="@android:color/dim_foreground_light"/> <!-- not selected --> +</selector> 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 000000000000..8c222418789f --- /dev/null +++ b/core/res/res/color/secondary_text_nodisable_holo_dark.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_selected="true" android:color="@android:color/dim_foreground_dark_inverse"/> + <item android:state_activated="true" android:color="@android:color/bright_foreground_dark_inverse"/> + <item android:color="@android:color/dim_foreground_dark"/> <!-- not selected --> +</selector> 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 000000000000..8c222418789f --- /dev/null +++ b/core/res/res/color/secondary_text_nodisable_holo_light.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_selected="true" android:color="@android:color/dim_foreground_dark_inverse"/> + <item android:state_activated="true" android:color="@android:color/bright_foreground_dark_inverse"/> + <item android:color="@android:color/dim_foreground_dark"/> <!-- not selected --> +</selector> 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 000000000000..269ff719e244 --- /dev/null +++ b/core/res/res/color/tertiary_text_holo_dark.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="#808080"/> + <item android:state_window_focused="false" android:color="#808080"/> + <item android:state_pressed="true" android:color="#808080"/> + <item android:state_selected="true" android:color="@android:color/dim_foreground_light"/> + <item android:color="#808080"/> <!-- not selected --> +</selector> + 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 000000000000..9e5c2d982aed --- /dev/null +++ b/core/res/res/color/tertiary_text_holo_light.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_enabled="false" android:color="#808080"/> + <item android:state_window_focused="false" android:color="#808080"/> + <item android:state_pressed="true" android:color="#808080"/> + <item android:state_selected="true" android:color="#808080"/> + <item android:color="#808080"/> <!-- not selected --> +</selector> + 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 000000000000..4f3eb62dfd32 --- /dev/null +++ b/core/res/res/color/widget_edittext_holo_dark.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_focused="false" android:color="@android:color/bright_foreground_light"/> <!-- unfocused --> + <item android:color="@android:color/bright_foreground_light"/> +</selector> 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 Binary files differindex d72e2b95b810..d93e58045d87 100644 --- 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 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 Binary files differindex 240a0444e1eb..ffbe776c84c0 100644 --- 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 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 Binary files differindex d72e2b95b810..d93e58045d87 100644 --- 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 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 Binary files differindex 240a0444e1eb..ffbe776c84c0 100644 --- 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 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 Binary files differindex 911e1aa6598c..4148ac4072a5 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_off_holo_dark.png 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 Binary files differindex 4ca3c56d3f3c..2cc946f38864 100644 --- a/core/res/res/drawable-hdpi/btn_check_off_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_off_holo_light.png 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 Binary files differindex 08f41812ff45..9f9cb01c49b9 100644 --- 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 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 Binary files differindex d3754ddb42ad..56425d29af71 100644 --- 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 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 Binary files differindex 264f102132ed..f8199283b3dc 100644 --- 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 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 Binary files differindex 48506bf721ba..57cb5121305f 100644 --- 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 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 Binary files differindex 7805458d2cdc..1f7aeee3bbd5 100644 --- 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 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 Binary files differindex 4e268d5168cb..1f740add42bb 100644 --- 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 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 Binary files differindex 7805458d2cdc..1f7aeee3bbd5 100644 --- 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 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 Binary files differindex 4e268d5168cb..1f740add42bb 100644 --- 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 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 Binary files differindex 5541c67ba042..d0c441545880 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_check_on_holo_dark.png 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 Binary files differindex 768c4afaed20..af84d4b0dbcb 100644 --- a/core/res/res/drawable-hdpi/btn_check_on_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_check_on_holo_light.png 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 Binary files differindex 37e3953c87b3..91e5f1465fc1 100644 --- 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 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 Binary files differindex fc29e46248ab..0cf7ed2319a8 100644 --- 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 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 Binary files differindex a0beac44afc8..e758aab69fa2 100644 --- 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 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 Binary files differindex 5df45c74f140..2edf656a36fb 100644 --- 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 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 Binary files differnew file mode 100644 index 000000000000..3deb3856bf6e --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..de378a57a90e --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..35f8b3d29266 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_disabled_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..3f45375c3543 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_disabled_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..ea58bf707e41 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_focused_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..b225aafff193 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_focused_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..b5b1533fde91 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_normal_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..81b8a75bdc1f --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_normal_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..eb8d85acdf6f --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_pressed_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..6777ebfa1ee0 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_default_pressed_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..2a7505b410ea --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_disabled_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..bbb01f042593 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_disabled_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..b617a2a7cd24 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_disabled_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..fd59f4a86cf4 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_disabled_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..5d17cded40ab --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_focused_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..b6b4bf1ad49e --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_focused_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..eab50391378e --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_focused_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..b6b4bf1ad49e --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_focused_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..edf229687611 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_normal_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..68afa4c8f136 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_normal_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..c7df168f7f9f --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_normal_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..5a9087b18374 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_normal_on_holo_light.png 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 Binary files differindex 301c97df691b..dd18b7afada7 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_holo_dark.png 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 Binary files differindex 657c8e55b8e9..66d538f35aa5 100644 --- a/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_off_holo_light.png 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 Binary files differindex 5e6ef2b947df..4e777f85dbae 100644 --- 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 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 Binary files differindex 342bf1168c3f..6062033df64a 100644 --- 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 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 Binary files differindex d11ae858a507..683a883d807a 100644 --- 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 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 Binary files differindex 68bd1dfee468..19524ffe6ec7 100644 --- 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 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 Binary files differindex 5b0dbe842358..2e1111b48966 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_holo_dark.png 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 Binary files differindex 45ae36b5e040..90639ecf3c3e 100644 --- a/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png +++ b/core/res/res/drawable-hdpi/btn_radio_on_holo_light.png 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 Binary files differindex c3a0d48f9fab..190721537b63 100644 --- 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 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 Binary files differindex ca223587650a..b51c7ad215b1 100644 --- 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 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 Binary files differindex 6c05f472aca7..06d39cc30698 100644 --- 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 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 Binary files differindex a17fa1edd124..06a4314bf3e3 100644 --- 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 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 Binary files differnew file mode 100644 index 000000000000..500490d4773d --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_pressed_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..f6690c6ed230 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_pressed_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..933d2fe2ace8 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_pressed_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..c07445a14f44 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_radio_pressed_on_holo_light.png 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 Binary files differnew file mode 100755 index 000000000000..128a8ddcaadd --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..da05c23894ca --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_focused_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..da66a98687cc --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..3ac8417933d0 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_disabled_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..fc9d493c3edf --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..315ae3b0cbb6 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_focused_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..f903bdb1c330 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_holo.9.png 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 Binary files differnew file mode 100755 index 000000000000..ee9590c61930 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..cbc9da2c97b6 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_normal_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..17920638cb54 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..097025b77b40 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_off_pressed_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..5b92d7c6b439 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..a244f45b9648 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_focused_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..9218f91dfb78 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..81802f845bd0 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_disabled_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..9dea9839b7a5 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..fc2374ba85ae --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_focused_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..4c1d89d79ed6 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_holo.9.png 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 Binary files differnew file mode 100755 index 000000000000..18bb6bd7f87d --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..de78a9f219b0 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_normal_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..22693261f8b2 --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..ead4ccfd4b8f --- /dev/null +++ b/core/res/res/drawable-hdpi/btn_toggle_on_pressed_holo_light.9.png diff --git a/core/res/res/drawable-hdpi/cab_divider_holo_dark.png b/core/res/res/drawable-hdpi/cab_divider_holo_dark.png Binary files differnew file mode 100755 index 000000000000..e6f61fc500bb --- /dev/null +++ b/core/res/res/drawable-hdpi/cab_divider_holo_dark.png diff --git a/core/res/res/drawable-hdpi/cab_divider_holo_light.png b/core/res/res/drawable-hdpi/cab_divider_holo_light.png Binary files differnew file mode 100755 index 000000000000..2f97a290c52d --- /dev/null +++ b/core/res/res/drawable-hdpi/cab_divider_holo_light.png diff --git a/core/res/res/drawable-hdpi/cab_divider_vertical_dark.png b/core/res/res/drawable-hdpi/cab_divider_vertical_dark.png Binary files differnew file mode 100755 index 000000000000..b1f035c93d93 --- /dev/null +++ b/core/res/res/drawable-hdpi/cab_divider_vertical_dark.png diff --git a/core/res/res/drawable-hdpi/cab_divider_vertical_light.png b/core/res/res/drawable-hdpi/cab_divider_vertical_light.png Binary files differnew file mode 100755 index 000000000000..2183b128ce33 --- /dev/null +++ b/core/res/res/drawable-hdpi/cab_divider_vertical_light.png diff --git a/core/res/res/drawable-hdpi/cab_holo_dark.9.png b/core/res/res/drawable-hdpi/cab_holo_dark.9.png Binary files differnew file mode 100755 index 000000000000..662d63ce4233 --- /dev/null +++ b/core/res/res/drawable-hdpi/cab_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/cab_holo_light.9.png b/core/res/res/drawable-hdpi/cab_holo_light.9.png Binary files differnew file mode 100755 index 000000000000..e8cbde195609 --- /dev/null +++ b/core/res/res/drawable-hdpi/cab_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..861e0a131a38 --- /dev/null +++ b/core/res/res/drawable-hdpi/cab_ic_close_focused_holo.png 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 Binary files differnew file mode 100755 index 000000000000..036f362cabe9 --- /dev/null +++ b/core/res/res/drawable-hdpi/cab_ic_close_normal_holo.png 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 Binary files differnew file mode 100755 index 000000000000..be8c2fffedd8 --- /dev/null +++ b/core/res/res/drawable-hdpi/cab_ic_close_pressed_holo.png 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 Binary files differnew file mode 100644 index 000000000000..6de74a7b4ac2 --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_disabled_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..a0e201d32933 --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_disabled_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..9bb69c43639f --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_disabled_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..bffc5aaaf3bf --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_disabled_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..bbe04b62d739 --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_focused_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..62f1efa51ada --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_focused_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..c4026a80313c --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_focused_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..409aa3e6a198 --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_focused_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..10f1bc47369e --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_normal_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..20a1efa391aa --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_normal_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..0a10ec833955 --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_normal_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..34b53ee57e7d --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_normal_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..7f1462078a1c --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_pressed_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..cabf93664ca4 --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_pressed_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..bcddb3141ffe --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_pressed_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..84160e5246c5 --- /dev/null +++ b/core/res/res/drawable-hdpi/checkbox_pressed_on_holo_light.png diff --git a/core/res/res/drawable-hdpi/dialog_bottom_holo.9.png b/core/res/res/drawable-hdpi/dialog_bottom_holo.9.png Binary files differnew file mode 100644 index 000000000000..3a84de954139 --- /dev/null +++ b/core/res/res/drawable-hdpi/dialog_bottom_holo.9.png diff --git a/core/res/res/drawable-hdpi/dialog_full_holo.9.png b/core/res/res/drawable-hdpi/dialog_full_holo.9.png Binary files differnew file mode 100644 index 000000000000..5d2e4e1da98b --- /dev/null +++ b/core/res/res/drawable-hdpi/dialog_full_holo.9.png diff --git a/core/res/res/drawable-hdpi/dialog_middle_holo.9.png b/core/res/res/drawable-hdpi/dialog_middle_holo.9.png Binary files differnew file mode 100644 index 000000000000..dc5e79d25e78 --- /dev/null +++ b/core/res/res/drawable-hdpi/dialog_middle_holo.9.png diff --git a/core/res/res/drawable-hdpi/dialog_top_holo.9.png b/core/res/res/drawable-hdpi/dialog_top_holo.9.png Binary files differnew file mode 100644 index 000000000000..0275c18d7ed5 --- /dev/null +++ b/core/res/res/drawable-hdpi/dialog_top_holo.9.png 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 Binary files differnew file mode 100644 index 000000000000..e8e1deb08a7b --- /dev/null +++ b/core/res/res/drawable-hdpi/divider_horizontal_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..9e6cbbe9e40e --- /dev/null +++ b/core/res/res/drawable-hdpi/divider_horizontal_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..deacb7303816 --- /dev/null +++ b/core/res/res/drawable-hdpi/divider_vertical_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..cd2c826874bc --- /dev/null +++ b/core/res/res/drawable-hdpi/divider_vertical_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..5ee5bb8f2bd2 --- /dev/null +++ b/core/res/res/drawable-hdpi/ic_dialog_close_normal_holo.png 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 Binary files differnew file mode 100644 index 000000000000..792db0695161 --- /dev/null +++ b/core/res/res/drawable-hdpi/ic_dialog_close_pressed_holo.png diff --git a/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png b/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png Binary files differnew file mode 100644 index 000000000000..e2085751e09c --- /dev/null +++ b/core/res/res/drawable-hdpi/ic_dialog_focused_holo.png 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 Binary files differnew file mode 100644 index 000000000000..cfd6f785c880 --- /dev/null +++ b/core/res/res/drawable-hdpi/tab_arrow_left_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..036aa8c0b6ad --- /dev/null +++ b/core/res/res/drawable-hdpi/tab_arrow_left_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..b22603879561 --- /dev/null +++ b/core/res/res/drawable-hdpi/tab_arrow_right_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..0e5fbe671c01 --- /dev/null +++ b/core/res/res/drawable-hdpi/tab_arrow_right_holo_light.png diff --git a/core/res/res/drawable-hdpi/tab_divider_holo_dark.png b/core/res/res/drawable-hdpi/tab_divider_holo_dark.png Binary files differnew file mode 100644 index 000000000000..112cb04b829e --- /dev/null +++ b/core/res/res/drawable-hdpi/tab_divider_holo_dark.png diff --git a/core/res/res/drawable-hdpi/tab_divider_holo_light.png b/core/res/res/drawable-hdpi/tab_divider_holo_light.png Binary files differnew file mode 100644 index 000000000000..1bf4d386881a --- /dev/null +++ b/core/res/res/drawable-hdpi/tab_divider_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..f01b9bc3f92e --- /dev/null +++ b/core/res/res/drawable-hdpi/tab_selector_holo_dark.9.png diff --git a/core/res/res/drawable-hdpi/tab_strip_holo.9.png b/core/res/res/drawable-hdpi/tab_strip_holo.9.png Binary files differnew file mode 100644 index 000000000000..d937f6b9e2a3 --- /dev/null +++ b/core/res/res/drawable-hdpi/tab_strip_holo.9.png 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 Binary files differindex c67d04d2b687..7ec219242167 100644 --- a/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png 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 Binary files differindex 1292ebfb64f5..c03e4f6bb4b2 100644 --- a/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_default_holo_light.9.png 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 Binary files differindex a39982afca6e..664271762622 100644 --- a/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_disabled_holo_dark.9.png 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 Binary files differindex 1f224b9448fa..957275241b31 100644 --- a/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_disabled_holo_light.9.png 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 Binary files differindex 66f18cc0d9ed..0ad248c16051 100644 --- 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 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 Binary files differindex 2664384c3076..b7a07c4a0bd8 100644 --- 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 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 Binary files differindex bbf53c5070ed..a271ac9bfe45 100644 --- a/core/res/res/drawable-hdpi/textfield_pressed_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_pressed_holo_dark.9.png 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 Binary files differindex ce49b8d5dffd..521722dcaa4e 100644 --- a/core/res/res/drawable-hdpi/textfield_pressed_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_pressed_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..5b62564818b7 --- /dev/null +++ b/core/res/res/drawable-hdpi/textfield_search_default_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..881edeb6bc64 --- /dev/null +++ b/core/res/res/drawable-hdpi/textfield_search_default_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..cb3f35b4e37b --- /dev/null +++ b/core/res/res/drawable-hdpi/textfield_search_selected_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..742b13760ce1 --- /dev/null +++ b/core/res/res/drawable-hdpi/textfield_search_selected_holo_light.9.png 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 Binary files differindex bbf53c5070ed..a271ac9bfe45 100644 --- a/core/res/res/drawable-hdpi/textfield_selected_holo_dark.9.png +++ b/core/res/res/drawable-hdpi/textfield_selected_holo_dark.9.png 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 Binary files differindex ce49b8d5dffd..521722dcaa4e 100644 --- a/core/res/res/drawable-hdpi/textfield_selected_holo_light.9.png +++ b/core/res/res/drawable-hdpi/textfield_selected_holo_light.9.png 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 Binary files differindex a603fb1aff9c..3fac4aa8ea39 100644 --- 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 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 Binary files differindex 69e9ff9eb1a2..3da9a46f44c4 100644 --- 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 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 Binary files differindex a603fb1aff9c..3fac4aa8ea39 100644 --- 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 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 Binary files differindex 69e9ff9eb1a2..3da9a46f44c4 100644 --- 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 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 Binary files differindex 5e44c293ca33..b03f3569c97e 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_off_holo_dark.png 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 Binary files differindex 5b2ec928e324..9dbbd49c30aa 100644 --- a/core/res/res/drawable-mdpi/btn_check_off_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_off_holo_light.png 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 Binary files differindex 611bb1d7a05b..0dcb9de6595d 100644 --- 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 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 Binary files differindex 5a0ea441f37a..b25fdc498e49 100644 --- 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 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 Binary files differindex aa28df22a4fb..89ea3a8b237b 100644 --- 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 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 Binary files differindex ade1136e0214..3fa45d9eb856 100644 --- 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 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 Binary files differindex f19972a447b0..48cc017c4e4b 100644 --- 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 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 Binary files differindex 13ef46e2c39d..c9ebbca33b80 100644 --- 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 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 Binary files differindex f19972a447b0..48cc017c4e4b 100644 --- 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 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 Binary files differindex 13ef46e2c39d..c9ebbca33b80 100644 --- 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 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 Binary files differindex 130d5629237c..ca4d509e7261 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_check_on_holo_dark.png 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 Binary files differindex 6b7808bbb6a6..158f3a1cd181 100644 --- a/core/res/res/drawable-mdpi/btn_check_on_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_check_on_holo_light.png 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 Binary files differindex df753f51eb49..0722cdacf3eb 100644 --- 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 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 Binary files differindex 6a4dd2ce7c76..4de166e56e18 100644 --- 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 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 Binary files differindex 7586881cc458..5b93f8b6e9f7 100644 --- 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 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 Binary files differindex 24701ce9d59a..74ab2504e582 100644 --- 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 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 Binary files differnew file mode 100644 index 000000000000..9bc1ee8d1078 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..cc643eaef649 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..0586d52ea584 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_disabled_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..dd6c1a034f2f --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_disabled_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..e8f07cb00429 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_focused_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..0685f1edc8b6 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_focused_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..6b33fa426eda --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_normal_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..eb728ed413a4 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_normal_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..4a15d9d68738 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_pressed_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..6718ff718590 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_default_pressed_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..f21142e82b6c --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_disabled_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..a1031fc23cee --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_disabled_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..61243c55217b --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_disabled_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..faa55e0b5482 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_disabled_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..0c645dae4ce9 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_focused_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..5efc3215d51e --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_focused_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..96bcdc5293dd --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_focused_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..5efc3215d51e --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_focused_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..96413ef0e1f3 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_normal_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..1cb5432e8c67 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_normal_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..2e8404ad1fef --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_normal_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..b3e14b1f9465 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_normal_on_holo_light.png 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 Binary files differindex 16c1c6bc7b51..a3cef04d9d41 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_holo_dark.png 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 Binary files differindex e8287f30693e..e8def559e536 100644 --- a/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_off_holo_light.png 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 Binary files differindex b25217b6c214..1a9310b43c96 100644 --- 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 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 Binary files differindex b63b9b0250e6..bc28b5b1a6fe 100644 --- 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 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 Binary files differindex bef757299c1a..2b0ddd1177e8 100644 --- 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 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 Binary files differindex af754e145cfa..745cf192bc08 100644 --- 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 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 Binary files differindex 4ed74712e28c..9954500178b0 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_holo_dark.png 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 Binary files differindex 62aaa41318d1..fa67a4397e58 100644 --- a/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png +++ b/core/res/res/drawable-mdpi/btn_radio_on_holo_light.png 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 Binary files differindex 7cf91c6c7fa9..c15c310941d9 100644 --- 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 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 Binary files differindex 0d93507b66f4..aa07c5ac0296 100644 --- 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 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 Binary files differindex 56f6f5b43fa8..e96a74f11277 100644 --- 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 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 Binary files differindex 48dd8e9d3c6c..c51c96c1ddd6 100644 --- 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 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 Binary files differnew file mode 100644 index 000000000000..5f74c7054886 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_pressed_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..408e50e31e3f --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_pressed_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..ff60bc2b7ac8 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_pressed_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..2125c24a769c --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_radio_pressed_on_holo_light.png 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 Binary files differnew file mode 100755 index 000000000000..7d1e16df0a4c --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..92e86cd0e67e --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_focused_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..1cf473b2efd5 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..d6f2125d461c --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_disabled_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..31f7f8c3eebf --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..82425d52a9f0 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_focused_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..0ca659ef42ab --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_holo.9.png 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 Binary files differnew file mode 100755 index 000000000000..16f19fc24859 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..e2c770274351 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_normal_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..d61470cc489c --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..4019fee18154 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_off_pressed_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..ba354e364384 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..9391b2ef156d --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_focused_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..601ff2ccfcd1 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..90c259a955a5 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_disabled_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..857c757d29a9 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..ef16a48a44f5 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_focused_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..66cbe48cf941 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_holo.9.png 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 Binary files differnew file mode 100755 index 000000000000..d47ec8f1b0f6 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..2951caf5017e --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_normal_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..141b4ddb1a40 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_dark.9.png 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 Binary files differnew file mode 100755 index 000000000000..913aed51d9f7 --- /dev/null +++ b/core/res/res/drawable-mdpi/btn_toggle_on_pressed_holo_light.9.png diff --git a/core/res/res/drawable-mdpi/cab_divider_holo_dark.png b/core/res/res/drawable-mdpi/cab_divider_holo_dark.png Binary files differnew file mode 100755 index 000000000000..57cc8a4426f6 --- /dev/null +++ b/core/res/res/drawable-mdpi/cab_divider_holo_dark.png diff --git a/core/res/res/drawable-mdpi/cab_divider_holo_light.png b/core/res/res/drawable-mdpi/cab_divider_holo_light.png Binary files differnew file mode 100755 index 000000000000..ec85701a44e4 --- /dev/null +++ b/core/res/res/drawable-mdpi/cab_divider_holo_light.png diff --git a/core/res/res/drawable-mdpi/cab_divider_vertical_dark.png b/core/res/res/drawable-mdpi/cab_divider_vertical_dark.png Binary files differnew file mode 100755 index 000000000000..f7ed6dff8ecf --- /dev/null +++ b/core/res/res/drawable-mdpi/cab_divider_vertical_dark.png diff --git a/core/res/res/drawable-mdpi/cab_divider_vertical_light.png b/core/res/res/drawable-mdpi/cab_divider_vertical_light.png Binary files differnew file mode 100755 index 000000000000..73ac0d9ed4d8 --- /dev/null +++ b/core/res/res/drawable-mdpi/cab_divider_vertical_light.png diff --git a/core/res/res/drawable-mdpi/cab_holo_dark.9.png b/core/res/res/drawable-mdpi/cab_holo_dark.9.png Binary files differnew file mode 100755 index 000000000000..6c85300026c3 --- /dev/null +++ b/core/res/res/drawable-mdpi/cab_holo_dark.9.png diff --git a/core/res/res/drawable-mdpi/cab_holo_light.9.png b/core/res/res/drawable-mdpi/cab_holo_light.9.png Binary files differnew file mode 100755 index 000000000000..c82352a4ac23 --- /dev/null +++ b/core/res/res/drawable-mdpi/cab_holo_light.9.png 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 Binary files differnew file mode 100755 index 000000000000..df170c4c0350 --- /dev/null +++ b/core/res/res/drawable-mdpi/cab_ic_close_focused_holo.png 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 Binary files differnew file mode 100755 index 000000000000..9482ce70a458 --- /dev/null +++ b/core/res/res/drawable-mdpi/cab_ic_close_normal_holo.png 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 Binary files differnew file mode 100755 index 000000000000..d115d20249c6 --- /dev/null +++ b/core/res/res/drawable-mdpi/cab_ic_close_pressed_holo.png 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 Binary files differnew file mode 100644 index 000000000000..e1094beac5cb --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_disabled_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..c17377c11765 --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_disabled_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..f2c529018666 --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_disabled_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..06bd9033c6b8 --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_disabled_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..be624c23c90b --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_focused_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..2493ce2347f6 --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_focused_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..7cdc1dfa96f2 --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_focused_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..f977e72bae3c --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_focused_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..f824f76e2d56 --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_normal_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..a76f68c85841 --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_normal_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..e4fd41804b4d --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_normal_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..d572ef59f2fe --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_normal_on_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..686707e91e50 --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_pressed_off_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..17dd1dab1628 --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_pressed_off_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..8cf2b1bb00dd --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_pressed_on_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..c2df6da1e10f --- /dev/null +++ b/core/res/res/drawable-mdpi/checkbox_pressed_on_holo_light.png diff --git a/core/res/res/drawable-mdpi/dialog_bottom_holo.9.png b/core/res/res/drawable-mdpi/dialog_bottom_holo.9.png Binary files differnew file mode 100644 index 000000000000..cb3d0f29dd58 --- /dev/null +++ b/core/res/res/drawable-mdpi/dialog_bottom_holo.9.png diff --git a/core/res/res/drawable-mdpi/dialog_full_holo.9.png b/core/res/res/drawable-mdpi/dialog_full_holo.9.png Binary files differnew file mode 100644 index 000000000000..0ec942153ed2 --- /dev/null +++ b/core/res/res/drawable-mdpi/dialog_full_holo.9.png diff --git a/core/res/res/drawable-mdpi/dialog_middle_holo.9.png b/core/res/res/drawable-mdpi/dialog_middle_holo.9.png Binary files differnew file mode 100644 index 000000000000..36da5ca20e69 --- /dev/null +++ b/core/res/res/drawable-mdpi/dialog_middle_holo.9.png diff --git a/core/res/res/drawable-mdpi/dialog_top_holo.9.png b/core/res/res/drawable-mdpi/dialog_top_holo.9.png Binary files differnew file mode 100644 index 000000000000..1ed519b61db4 --- /dev/null +++ b/core/res/res/drawable-mdpi/dialog_top_holo.9.png 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 Binary files differnew file mode 100644 index 000000000000..d6548c633946 --- /dev/null +++ b/core/res/res/drawable-mdpi/divider_horizontal_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..9a42dd2416e2 --- /dev/null +++ b/core/res/res/drawable-mdpi/divider_horizontal_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..4c6968cb9a9d --- /dev/null +++ b/core/res/res/drawable-mdpi/divider_vertical_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..7ddf1b63e2fa --- /dev/null +++ b/core/res/res/drawable-mdpi/divider_vertical_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..7f2a0292688e --- /dev/null +++ b/core/res/res/drawable-mdpi/ic_dialog_close_normal_holo.png 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 Binary files differnew file mode 100644 index 000000000000..daa8e1883f1c --- /dev/null +++ b/core/res/res/drawable-mdpi/ic_dialog_close_pressed_holo.png diff --git a/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png b/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png Binary files differnew file mode 100644 index 000000000000..179f2deef7df --- /dev/null +++ b/core/res/res/drawable-mdpi/ic_dialog_focused_holo.png 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 Binary files differnew file mode 100644 index 000000000000..4f8bafe08ce0 --- /dev/null +++ b/core/res/res/drawable-mdpi/tab_arrow_left_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..8e225fce686e --- /dev/null +++ b/core/res/res/drawable-mdpi/tab_arrow_left_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..0a8006de9829 --- /dev/null +++ b/core/res/res/drawable-mdpi/tab_arrow_right_holo_dark.png 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 Binary files differnew file mode 100644 index 000000000000..85aae47d55f2 --- /dev/null +++ b/core/res/res/drawable-mdpi/tab_arrow_right_holo_light.png diff --git a/core/res/res/drawable-mdpi/tab_divider_holo_dark.png b/core/res/res/drawable-mdpi/tab_divider_holo_dark.png Binary files differnew file mode 100644 index 000000000000..89d7b8bec2e3 --- /dev/null +++ b/core/res/res/drawable-mdpi/tab_divider_holo_dark.png diff --git a/core/res/res/drawable-mdpi/tab_divider_holo_light.png b/core/res/res/drawable-mdpi/tab_divider_holo_light.png Binary files differnew file mode 100644 index 000000000000..878b2b42aa83 --- /dev/null +++ b/core/res/res/drawable-mdpi/tab_divider_holo_light.png 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 Binary files differnew file mode 100644 index 000000000000..30d30df42b1d --- /dev/null +++ b/core/res/res/drawable-mdpi/tab_selector_holo_dark.9.png 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 Binary files differindex a9a2cc68d8a8..3a5f36d38db2 100644 --- a/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_default_holo_dark.9.png 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 Binary files differindex 36003cfda488..b8cc76f83699 100644 --- a/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_default_holo_light.9.png 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 Binary files differindex cec82dd0bab2..a1f0c71a82f3 100644 --- a/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_disabled_holo_dark.9.png 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 Binary files differindex 8a9b11fb0f94..71e310397ddd 100644 --- a/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_disabled_holo_light.9.png 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 Binary files differindex 545924c1352e..ac6d406aa434 100644 --- 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 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 Binary files differindex 53ee26c937b0..bb6e9531deef 100644 --- 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 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 Binary files differindex 0e7c24db0066..7667d958854d 100644 --- a/core/res/res/drawable-mdpi/textfield_pressed_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_pressed_holo_dark.9.png 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 Binary files differindex fee09a635847..269affd70c36 100644 --- a/core/res/res/drawable-mdpi/textfield_pressed_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_pressed_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..354994883d1f --- /dev/null +++ b/core/res/res/drawable-mdpi/textfield_search_default_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..6db03cb8fdc1 --- /dev/null +++ b/core/res/res/drawable-mdpi/textfield_search_default_holo_light.9.png 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 Binary files differnew file mode 100644 index 000000000000..670439a2dcd9 --- /dev/null +++ b/core/res/res/drawable-mdpi/textfield_search_selected_holo_dark.9.png 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 Binary files differnew file mode 100644 index 000000000000..90e26e290dec --- /dev/null +++ b/core/res/res/drawable-mdpi/textfield_search_selected_holo_light.9.png 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 Binary files differindex 0e7c24db0066..7667d958854d 100644 --- a/core/res/res/drawable-mdpi/textfield_selected_holo_dark.9.png +++ b/core/res/res/drawable-mdpi/textfield_selected_holo_dark.9.png 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 Binary files differindex fee09a635847..269affd70c36 100644 --- a/core/res/res/drawable-mdpi/textfield_selected_holo_light.9.png +++ b/core/res/res/drawable-mdpi/textfield_selected_holo_light.9.png 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 000000000000..c250070b9723 --- /dev/null +++ b/core/res/res/drawable/btn_default_holo_dark.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_window_focused="false" android:state_enabled="true" + android:drawable="@drawable/btn_default_normal_holo_dark" /> + <item android:state_window_focused="false" android:state_enabled="false" + android:drawable="@drawable/btn_default_disabled_holo_dark" /> + <item android:state_pressed="true" + android:drawable="@drawable/btn_default_pressed_holo_dark" /> + <item android:state_focused="true" android:state_enabled="true" + android:drawable="@drawable/btn_default_focused_holo_dark" /> + <item android:state_enabled="true" + android:drawable="@drawable/btn_default_normal_holo_dark" /> + <item android:state_focused="true" + android:drawable="@drawable/btn_default_disabled_focused_holo_dark" /> + <item + android:drawable="@drawable/btn_default_disabled_holo_dark" /> +</selector> 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 000000000000..658ca9eef71e --- /dev/null +++ b/core/res/res/drawable/btn_toggle_holo_dark.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_checked="true" + android:state_window_focused="false" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_on_normal_holo_dark" /> + <item android:state_checked="true" + android:state_window_focused="false" android:state_enabled="false" + android:drawable="@drawable/btn_toggle_on_disabled_holo_dark" /> + <item android:state_checked="true" android:state_pressed="true" + android:drawable="@drawable/btn_toggle_on_pressed_holo_dark" /> + <item android:state_checked="true" + android:state_focused="true" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_on_focused_holo_dark" /> + <item android:state_checked="true" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_on_normal_holo_dark" /> + <item android:state_checked="true" android:state_focused="true" + android:drawable="@drawable/btn_toggle_on_disabled_focused_holo_dark" /> + <item android:state_checked="true" + android:drawable="@drawable/btn_toggle_on_disabled_holo_dark" /> + + <item android:state_window_focused="false" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_off_normal_holo_dark" /> + <item android:state_window_focused="false" android:state_enabled="false" + android:drawable="@drawable/btn_toggle_off_disabled_holo_dark" /> + <item android:state_pressed="true" + android:drawable="@drawable/btn_toggle_off_pressed_holo_dark" /> + <item android:state_focused="true" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_off_focused_holo_dark" /> + <item android:state_enabled="true" + android:drawable="@drawable/btn_toggle_off_normal_holo_dark" /> + <item android:state_focused="true" + android:drawable="@drawable/btn_toggle_off_disabled_focused_holo_dark" /> + <item + android:drawable="@drawable/btn_toggle_off_disabled_holo_dark" /> +</selector> 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 000000000000..d3f101248e07 --- /dev/null +++ b/core/res/res/drawable/btn_toggle_holo_light.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_checked="true" + android:state_window_focused="false" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_on_normal_holo_light" /> + <item android:state_checked="true" + android:state_window_focused="false" android:state_enabled="false" + android:drawable="@drawable/btn_toggle_on_disabled_holo_light" /> + <item android:state_checked="true" android:state_pressed="true" + android:drawable="@drawable/btn_toggle_on_pressed_holo_light" /> + <item android:state_checked="true" + android:state_focused="true" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_on_focused_holo_light" /> + <item android:state_checked="true" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_on_normal_holo_light" /> + <item android:state_checked="true" android:state_focused="true" + android:drawable="@drawable/btn_toggle_on_disabled_focused_holo_light" /> + <item android:state_checked="true" + android:drawable="@drawable/btn_toggle_on_disabled_holo_light" /> + + <item android:state_window_focused="false" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_off_normal_holo_light" /> + <item android:state_window_focused="false" android:state_enabled="false" + android:drawable="@drawable/btn_toggle_off_disabled_holo_light" /> + <item android:state_pressed="true" + android:drawable="@drawable/btn_toggle_off_pressed_holo_light" /> + <item android:state_focused="true" android:state_enabled="true" + android:drawable="@drawable/btn_toggle_off_focused_holo_light" /> + <item android:state_enabled="true" + android:drawable="@drawable/btn_toggle_off_normal_holo_light" /> + <item android:state_focused="true" + android:drawable="@drawable/btn_toggle_off_disabled_focused_holo_light" /> + <item + android:drawable="@drawable/btn_toggle_off_disabled_holo_light" /> +</selector> 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 000000000000..1baf7cc0b2b7 --- /dev/null +++ b/core/res/res/drawable/cab_ic_close_holo.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_pressed="true" + android:drawable="@drawable/cab_ic_close_pressed_holo" /> + <item android:state_focused="true" + android:drawable="@drawable/cab_ic_close_focused_holo" /> + <item android:drawable="@drawable/cab_ic_close_normal_holo" /> +</selector> diff --git a/core/res/res/layout/select_dialog.xml b/core/res/res/layout/select_dialog.xml index c665f7a7ed97..94dcb6a349b3 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 30fe02ef39c9..96fdcc6b36d4 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 b646a4c1eadc..a9be014e4418 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 c3c20731e655..1b9c973587cd 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 19b76abe2fe4..317b3f3261ce 100755 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -101,6 +101,9 @@ <attr name="textColorHighlightInverse" format="reference|color" /> <!-- Color of link text (URLs), when used in a light theme. @hide --> <attr name="textColorLinkInverse" format="reference|color" /> + + <!-- Color of list item text in alert dialogs. --> + <attr name="textColorAlertDialogListItem" format="reference|color" /> <!-- Search widget more corpus result item background. --> <attr name="searchWidgetCorpusItemBackground" format="reference|color" /> @@ -197,6 +200,8 @@ <!-- The list item height for search results. @hide --> <attr name="searchResultListItemHeight" format="dimension" /> <attr name="listDivider" format="reference" /> + <!-- The list divider used in alert dialogs. --> + <attr name="listDividerAlertDialog" format="reference" /> <!-- TextView style for list separators. --> <attr name="listSeparatorTextViewStyle" format="reference" /> <!-- The preferred left padding for an expandable list item (for child-specific layouts, diff --git a/core/res/res/values/colors.xml b/core/res/res/values/colors.xml index e9a4ca36fa80..623368df02b6 100644 --- a/core/res/res/values/colors.xml +++ b/core/res/res/values/colors.xml @@ -18,8 +18,8 @@ */ --> <resources> - <drawable name="screen_background_light">#ffefefef</drawable> - <drawable name="screen_background_dark">#ff101010</drawable> + <drawable name="screen_background_light">#fff3f3f3</drawable> + <drawable name="screen_background_dark">#ff000000</drawable> <drawable name="status_bar_closed_default_background">#ff000000</drawable> <drawable name="status_bar_opened_default_background">#ff000000</drawable> <drawable name="search_bar_default_color">#ff000000</drawable> @@ -36,8 +36,8 @@ <color name="white">#ffffffff</color> <color name="black">#ff000000</color> <color name="transparent">#00000000</color> - <color name="background_dark">#ff101010</color> - <color name="background_light">#ffefefef</color> + <color name="background_dark">#ff000000</color> + <color name="background_light">#fff3f3f3</color> <color name="bright_foreground_dark">@android:color/background_light</color> <color name="bright_foreground_light">@android:color/background_dark</color> <color name="bright_foreground_dark_disabled">#80ffffff</color> @@ -103,5 +103,32 @@ <color name="keyguard_text_color_soundon">#e69310</color> <color name="keyguard_text_color_decline">#fe0a5a</color> + <!-- For holo theme --> + <drawable name="screen_background_holo_light">#fff3f3f3</drawable> + <drawable name="screen_background_holo_dark">#ff000000</drawable> + <color name="background_holo_dark">#ff000000</color> + <color name="background_holo_light">#fff3f3f3</color> + <color name="bright_foreground_holo_dark">@android:color/background_holo_light</color> + <color name="bright_foreground_holo_light">@android:color/background_holo_dark</color> + <color name="bright_foreground_disabled_holo_dark">#80ffffff</color> + <color name="bright_foreground_disabled_holo_light">#80000000</color> + <color name="bright_foreground_inverse_holo_dark">@android:color/bright_foreground_holo_light</color> + <color name="bright_foreground_inverse_holo_light">@android:color/bright_foreground_holo_dark</color> + <color name="dim_foreground_holo_dark">#bebebe</color> + <color name="dim_foreground_disabled_holo_dark">#80bebebe</color> + <color name="dim_foreground_inverse_holo_dark">#323232</color> + <color name="dim_foreground_inverse_disabled_holo_dark">#80323232</color> + <color name="hint_foreground_holo_dark">#808080</color> + <color name="dim_foreground_holo_light">#323232</color> + <color name="dim_foreground_disabled_holo_light">#80323232</color> + <color name="dim_foreground_inverse_holo_light">#bebebe</color> + <color name="dim_foreground_inverse_disabled_holo_light">#80bebebe</color> + <color name="hint_foreground_holo_light">#808080</color> + <color name="highlight_background_holo">#cc475925</color> + <color name="highlight_background_inverse_holo">#ccd2e461</color> + <color name="highlighted_text_holo_dark">#cc475925</color> + <color name="highlighted_text_holo_light">#ccd2e461</color> + <color name="link_text_holo_dark">#5c5cff</color> + <color name="link_text_holo_light">#0000ee</color> </resources> diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index cdeb89992138..adcbb10247d4 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -1358,6 +1358,8 @@ <public type="attr" name="textAppearanceSmallPopupMenu" /> <public type="attr" name="breadCrumbTitle" /> <public type="attr" name="breadCrumbShortTitle" /> + <public type="attr" name="listDividerAlertDialog" /> + <public type="attr" name="textColorAlertDialogListItem" /> <public type="anim" name="animator_fade_in" /> <public type="anim" name="animator_fade_out" /> diff --git a/core/res/res/values/styles.xml b/core/res/res/values/styles.xml index ebaaada10d30..1c18a0338583 100644 --- a/core/res/res/values/styles.xml +++ b/core/res/res/values/styles.xml @@ -984,4 +984,686 @@ <item name="android:textColor">@android:color/secondary_text_light</item> </style> + <!-- Begin Holo theme styles --> + + <!-- Text Styles --> + <style name="TextAppearance.Holo" parent="TextAppearance"> + </style> + + <style name="TextAppearance.Holo.Inverse" parent="TextAppearance.Inverse"> + <item name="android:textColor">?textColorPrimaryInverse</item> + <item name="android:textColorHint">?textColorHintInverse</item> + <item name="android:textColorHighlight">?textColorHighlightInverse</item> + <item name="android:textColorLink">?textColorLinkInverse</item> + </style> + + <style name="TextAppearance.Holo.Large" parent="TextAppearance.Large"> + </style> + + <style name="TextAppearance.Holo.Medium" parent="TextAppearance.Medium"> + </style> + + <style name="TextAppearance.Holo.Small" parent="TextAppearance.Small"> + </style> + + <style name="TextAppearance.Holo.Large.Inverse"> + <item name="android:textColor">?textColorPrimaryInverse</item> + <item name="android:textColorHint">?textColorHintInverse</item> + <item name="android:textColorHighlight">?textColorHighlightInverse</item> + <item name="android:textColorLink">?textColorLinkInverse</item> + </style> + + <style name="TextAppearance.Holo.Medium.Inverse"> + <item name="android:textColor">?textColorPrimaryInverse</item> + <item name="android:textColorHint">?textColorHintInverse</item> + <item name="android:textColorHighlight">?textColorHighlightInverse</item> + <item name="android:textColorLink">?textColorLinkInverse</item> + </style> + + <style name="TextAppearance.Holo.Small.Inverse"> + <item name="android:textColor">?textColorPrimaryInverse</item> + <item name="android:textColorHint">?textColorHintInverse</item> + <item name="android:textColorHighlight">?textColorHighlightInverse</item> + <item name="android:textColorLink">?textColorLinkInverse</item> + </style> + + <style name="TextAppearance.Holo.SearchResult"> + </style> + + <style name="TextAppearance.Holo.SearchResult.Title"> + </style> + + <style name="TextAppearance.Holo.SearchResult.Subtitle"> + </style> + + <style name="TextAppearance.Holo.Widget" parent="TextAppearance.Widget"> + </style> + + <style name="TextAppearance.Holo.Widget.Button" parent="TextAppearance.Holo.Small.Inverse"> + <item name="android:textColor">@android:color/primary_text_light_nodisable</item> + </style> + + <style name="TextAppearance.Holo.Widget.IconMenu.Item" parent="TextAppearance.Holo.Small"> + <item name="android:textColor">?textColorPrimary</item> + </style> + + <style name="TextAppearance.Holo.Widget.TabWidget"> + <item name="android:textSize">14sp</item> + <item name="android:textStyle">normal</item> + <item name="android:textColor">@android:color/tab_indicator_text</item> + </style> + + <style name="TextAppearance.Holo.Widget.TextView"> + <item name="android:textColor">?textColorPrimaryDisableOnly</item> + <item name="android:textColorHint">?textColorHint</item> + </style> + + <style name="TextAppearance.Holo.Widget.TextView.PopupMenu"> + <item name="android:textSize">18sp</item> + <item name="android:textColor">?textColorPrimaryDisableOnly</item> + <item name="android:textColorHint">?textColorHint</item> + </style> + + <style name="TextAppearance.Holo.Widget.DropDownHint"> + <item name="android:textColor">?textColorPrimaryInverse</item> + <item name="android:textSize">14sp</item> + </style> + + <style name="TextAppearance.Holo.Widget.DropDownItem"> + <item name="android:textColor">@android:color/primary_text_light_disable_only</item> + </style> + + <style name="TextAppearance.Holo.Widget.TextView.SpinnerItem"> + <item name="android:textColor">@android:color/primary_text_light_disable_only</item> + </style> + + <style name="TextAppearance.Holo.Widget.EditText"> + <item name="android:textColor">@color/widget_edittext_holo_dark</item> + <item name="android:textColorHint">@android:color/hint_foreground_holo_light</item> + </style> + + <style name="TextAppearance.Holo.Widget.PopupMenu" parent="TextAppearance.Widget.PopupMenu"> + </style> + + <style name="TextAppearance.Holo.Widget.PopupMenu.Large" parent="TextAppearance.Widget.PopupMenu.Large"> + </style> + + <style name="TextAppearance.Holo.Widget.PopupMenu.Small" parent="TextAppearance.Widget.PopupMenu.Small"> + </style> + + <style name="TextAppearance.Holo.Widget.ActionMode"> + </style> + + <style name="TextAppearance.Holo.Widget.ActionMode.Title" parent="TextAppearance.Widget.ActionMode.Title"> + <item name="android:textColor">?android:attr/textColorPrimary</item> + </style> + + <style name="TextAppearance.Holo.Widget.ActionMode.Subtitle" parent="TextAppearance.Widget.ActionMode.Subtitle"> + <item name="android:textColor">?android:attr/textColorSecondary</item> + </style> + + <style name="TextAppearance.Holo.WindowTitle"> + <item name="android:textColor">#fff</item> + <item name="android:textSize">14sp</item> + <item name="android:textStyle">bold</item> + </style> + + <style name="TextAppearance.Holo.DialogWindowTitle"> + <item name="android:textSize">18sp</item> + </style> + + <!-- Light text styles --> + <style name="TextAppearance.Holo.Light" parent="TextAppearance.Holo"> + </style> + + <style name="TextAppearance.Holo.Light.Inverse"> + <item name="android:textColor">?textColorPrimaryInverse</item> + <item name="android:textColorHint">?textColorHintInverse</item> + <item name="android:textColorHighlight">?textColorHighlightInverse</item> + <item name="android:textColorLink">?textColorLinkInverse</item> + </style> + + <style name="TextAppearance.Holo.Light.Large"> + </style> + + <style name="TextAppearance.Holo.Light.Medium"> + </style> + + <style name="TextAppearance.Holo.Light.Small"> + </style> + + <style name="TextAppearance.Holo.Light.Large.Inverse"> + <item name="android:textColor">?textColorPrimaryInverse</item> + <item name="android:textColorHint">?textColorHintInverse</item> + <item name="android:textColorHighlight">?textColorHighlightInverse</item> + <item name="android:textColorLink">?textColorLinkInverse</item> + </style> + + <style name="TextAppearance.Holo.Light.Medium.Inverse"> + <item name="android:textColor">?textColorPrimaryInverse</item> + <item name="android:textColorHint">?textColorHintInverse</item> + <item name="android:textColorHighlight">?textColorHighlightInverse</item> + <item name="android:textColorLink">?textColorLinkInverse</item> + </style> + + <style name="TextAppearance.Holo.Light.Small.Inverse"> + <item name="android:textColor">?textColorPrimaryInverse</item> + <item name="android:textColorHint">?textColorHintInverse</item> + <item name="android:textColorHighlight">?textColorHighlightInverse</item> + <item name="android:textColorLink">?textColorLinkInverse</item> + </style> + + <style name="TextAppearance.Holo.Light.SearchResult" parent="TextAppearance.Holo.SearchResult"> + </style> + + <style name="TextAppearance.Holo.Light.SearchResult.Title"> + </style> + + <style name="TextAppearance.Holo.Light.SearchResult.Subtitle"> + </style> + + <style name="TextAppearance.Holo.Light.Widget" parent="TextAppearance.Widget"> + </style> + + <style name="TextAppearance.Holo.Light.Widget.Button"> + </style> + + <style name="TextAppearance.Holo.Light.Widget.PopupMenu" parent="TextAppearance.Holo.Widget.PopupMenu"> + </style> + + <style name="TextAppearance.Holo.Light.Widget.PopupMenu.Large" parent="TextAppearance.Holo.Widget.PopupMenu.Large"> + </style> + + <style name="TextAppearance.Holo.Light.Widget.PopupMenu.Small" parent="TextAppearance.Holo.Widget.PopupMenu.Small"> + </style> + + <style name="TextAppearance.Holo.Light.Widget.DropDownHint" parent="TextAppearance.Holo.Widget.DropDownHint"> + </style> + + <style name="TextAppearance.Holo.Light.Widget.ActionMode.Title" parent="TextAppearance.Widget.ActionMode.Title"> + <item name="android:textColor">?android:attr/textColorPrimary</item> + </style> + + <style name="TextAppearance.Holo.Light.Widget.ActionMode.Subtitle" parent="TextAppearance.Widget.ActionMode.Subtitle"> + <item name="android:textColor">?android:attr/textColorPrimary</item> + </style> + + <style name="TextAppearance.Holo.Light.WindowTitle"> + <item name="android:textColor">#fff</item> + <item name="android:textSize">14sp</item> + <item name="android:textStyle">bold</item> + </style> + + <style name="TextAppearance.Holo.Light.DialogWindowTitle"> + <item name="android:textSize">18sp</item> + </style> + + <!-- Widget Styles --> + + <style name="Widget.Holo" parent="Widget"> + </style> + + <style name="Widget.Holo.Button" parent="Widget.Button"> + <item name="android:background">@android:drawable/btn_default_holo_dark</item> + <item name="android:textAppearance">?android:attr/textAppearanceMedium</item> + <item name="android:textColor">@android:color/primary_text_holo_dark</item> + <item name="android:minHeight">48dip</item> + <item name="android:paddingLeft">32dip</item> + <item name="android:paddingRight">32dip</item> + </style> + + <style name="Widget.Holo.Button.Small"> + <item name="android:background">@android:drawable/btn_default_holo_dark</item> + <item name="android:textAppearance">?android:attr/textAppearanceSmall</item> + <item name="android:textColor">@android:color/primary_text_holo_dark</item> + <item name="android:minHeight">40dip</item> + <item name="android:paddingLeft">24dip</item> + <item name="android:paddingRight">24dip</item> + </style> + + <style name="Widget.Holo.Button.Inset"> + <item name="android:background">@android:drawable/button_inset</item> + </style> + + <style name="Widget.Holo.Button.Toggle"> + <item name="android:background">@android:drawable/btn_toggle_holo_dark</item> + <item name="android:textOn">@android:string/capital_on</item> + <item name="android:textOff">@android:string/capital_off</item> + <item name="android:disabledAlpha">?android:attr/disabledAlpha</item> + <item name="android:textAppearance">?android:attr/textAppearanceSmall</item> + <item name="android:minHeight">48dip</item> + <item name="android:paddingLeft">24dip</item> + <item name="android:paddingRight">24dip</item> + </style> + + <style name="Widget.Holo.TextView" parent="Widget.TextView"> + </style> + + <style name="Widget.Holo.TextView.ListSeparator" parent="Widget.TextView.ListSeparator"> + </style> + + <style name="Widget.Holo.TextSelectHandle" parent="Widget.TextSelectHandle"> + </style> + + <style name="Widget.Holo.AbsListView" parent="Widget.AbsListView"> + </style> + + <style name="Widget.Holo.AutoCompleteTextView" parent="Widget.AutoCompleteTextView"> + </style> + + <style name="Widget.Holo.CompoundButton.CheckBox" parent="Widget.CompoundButton.CheckBox"> + </style> + + <style name="Widget.Holo.ListView.DropDown"> + </style> + + <style name="Widget.Holo.EditText" parent="Widget.EditText"> + </style> + + <style name="Widget.Holo.ExpandableListView" parent="Widget.ExpandableListView"> + </style> + + <style name="Widget.Holo.ExpandableListView.White"> + </style> + + <style name="Widget.Holo.Gallery" parent="Widget.Gallery"> + </style> + + <style name="Widget.Holo.GestureOverlayView" parent="Widget.GestureOverlayView"> + </style> + + <style name="Widget.Holo.GridView" parent="Widget.GridView"> + </style> + + <style name="Widget.Holo.ImageButton" parent="Widget.ImageButton"> + </style> + + <style name="Widget.Holo.ImageWell" parent="Widget.ImageWell"> + </style> + + <style name="Widget.Holo.ListView" parent="Widget.ListView"> + </style> + + <style name="Widget.Holo.ListView.White"> + </style> + + <style name="Widget.Holo.PopupWindow" parent="Widget.PopupWindow"> + </style> + + <style name="Widget.Holo.ProgressBar" parent="Widget.ProgressBar"> + </style> + + <style name="Widget.Holo.ProgressBar.Horizontal" parent="Widget.ProgressBar.Horizontal"> + </style> + + <style name="Widget.Holo.ProgressBar.Small" parent="Widget.ProgressBar.Horizontal"> + </style> + + <style name="Widget.Holo.ProgressBar.Small.Title" parent="Widget.ProgressBar.Small.Title"> + </style> + + <style name="Widget.Holo.ProgressBar.Large" parent="Widget.ProgressBar.Large"> + </style> + + <style name="Widget.Holo.ProgressBar.Inverse" parent="Widget.ProgressBar.Inverse"> + </style> + + <style name="Widget.Holo.ProgressBar.Small.Inverse" parent="Widget.ProgressBar.Small.Inverse"> + </style> + + <style name="Widget.Holo.ProgressBar.Large.Inverse" parent="Widget.ProgressBar.Large.Inverse"> + </style> + + <style name="Widget.Holo.SeekBar" parent="Widget.SeekBar"> + </style> + + <style name="Widget.Holo.RatingBar" parent="Widget.RatingBar"> + </style> + + <style name="Widget.Holo.RatingBar.Indicator" parent="Widget.RatingBar.Indicator"> + </style> + + <style name="Widget.Holo.RatingBar.Small"> + </style> + + <style name="Widget.Holo.CompoundButton.RadioButton" parent="Widget.CompoundButton.RadioButton"> + </style> + + <style name="Widget.Holo.ScrollView" parent="Widget.ScrollView"> + </style> + + <style name="Widget.Holo.HorizontalScrollView" parent="Widget.HorizontalScrollView"> + </style> + + <style name="Widget.Holo.Spinner" parent="Widget.Spinner.DropDown"> + </style> + + <style name="Widget.Holo.Spinner.DropDown"> + </style> + + <style name="Widget.Holo.CompoundButton.Star" parent="Widget.CompoundButton.Star"> + </style> + + <style name="Widget.Holo.TabWidget" parent="Widget.TabWidget"> + </style> + + <style name="Widget.Holo.WebTextView" parent="Widget.WebTextView"> + </style> + + <style name="Widget.Holo.WebView" parent="Widget.WebView"> + </style> + + <style name="Widget.Holo.DropDownItem" parent="Widget.DropDownItem"> + </style> + + <style name="Widget.Holo.DropDownItem.Spinner"> + </style> + + <style name="Widget.Holo.TextView.SpinnerItem" parent="Widget.TextView.SpinnerItem"> + </style> + + <style name="Widget.Holo.KeyboardView" parent="Widget.KeyboardView"> + </style> + + <style name="Widget.Holo.QuickContactBadge.WindowSmall" parent="Widget.QuickContactBadge.WindowSmall"> + </style> + + <style name="Widget.Holo.QuickContactBadge.WindowMedium" parent="Widget.QuickContactBadge.WindowMedium"> + </style> + + <style name="Widget.Holo.QuickContactBadge.WindowLarge" parent="Widget.QuickContactBadge.WindowLarge"> + </style> + + <style name="Widget.Holo.QuickContactBadgeSmall.WindowSmall" parent="Widget.QuickContactBadgeSmall.WindowSmall"> + </style> + + <style name="Widget.Holo.QuickContactBadgeSmall.WindowMedium" parent="Widget.QuickContactBadgeSmall.WindowMedium"> + </style> + + <style name="Widget.Holo.QuickContactBadgeSmall.WindowLarge" parent="Widget.QuickContactBadgeSmall.WindowLarge"> + </style> + + <style name="Widget.Holo.ListPopupWindow" parent="Widget.ListPopupWindow"> + </style> + + <style name="Widget.Holo.PopupMenu" parent="Widget.PopupMenu"> + </style> + + <style name="Widget.Holo.ActionButton" parent="Widget.ActionButton"> + </style> + + <style name="Widget.Holo.ActionButton.Overflow" parent="Widget.ActionButton.Overflow"> + </style> + + <style name="Widget.Holo.ActionBarView_TabView" parent="Widget.ActionBarView_TabView"> + </style> + + <style name="Widget.Holo.ActionBarView_TabBar" parent="Widget.ActionBarView_TabBar"> + </style> + + <style name="Widget.Holo.ActionBarView_TabText" parent="Widget.ActionBarView_TabText"> + </style> + + <style name="Widget.Holo.ActionMode" parent="Widget.ActionMode"> + <item name="android:background">@android:drawable/cab_holo_dark</item> + <item name="android:titleTextStyle">@android:style/TextAppearance.Holo.Widget.ActionMode.Title</item> + <item name="android:subtitleTextStyle">@android:style/TextAppearance.Holo.Widget.ActionMode.Subtitle</item> + </style> + + <style name="Widget.Holo.ActionButton.CloseMode" parent="Widget.ActionButton.CloseMode"> + <item name="android:src">@drawable/cab_ic_close_holo</item> + </style> + + <style name="Widget.Holo.ActionBar" parent="Widget.ActionBar"> + </style> + + <!-- Light widget styles --> + + <style name="Widget.Holo.Light"> + </style> + + <style name="Widget.Holo.Light.Button" parent="Widget.Button"> + </style> + + <style name="Widget.Holo.Light.Button.Small"> + </style> + + <style name="Widget.Holo.Light.Button.Inset"> + </style> + + <style name="Widget.Holo.Light.Button.Toggle"> + <item name="android:background">@android:drawable/btn_toggle_holo_light</item> + <item name="android:textOn">@android:string/capital_on</item> + <item name="android:textOff">@android:string/capital_off</item> + <item name="android:disabledAlpha">?android:attr/disabledAlpha</item> + <item name="android:textAppearance">?android:attr/textAppearanceSmall</item> + <item name="android:minHeight">48dip</item> + <item name="android:paddingLeft">24dip</item> + <item name="android:paddingRight">24dip</item> + </style> + + <style name="Widget.Holo.Light.TextView" parent="Widget.TextView"> + </style> + + <style name="Widget.Holo.Light.TextView.ListSeparator"> + </style> + + <style name="Widget.Holo.Light.TextSelectHandle" parent="Widget.TextSelectHandle"> + </style> + + <style name="Widget.Holo.Light.AbsListView" parent="Widget.AbsListView"> + </style> + + <style name="Widget.Holo.Light.AutoCompleteTextView" parent="Widget.AutoCompleteTextView"> + </style> + + <style name="Widget.Holo.Light.CompoundButton.CheckBox" parent="Widget.CompoundButton.CheckBox"> + </style> + + <style name="Widget.Holo.Light.ListView.DropDown"> + </style> + + <style name="Widget.Holo.Light.EditText" parent="Widget.EditText"> + </style> + + <style name="Widget.Holo.Light.ExpandableListView" parent="Widget.ExpandableListView"> + </style> + + <style name="Widget.Holo.Light.ExpandableListView.White"> + </style> + + <style name="Widget.Holo.Light.Gallery" parent="Widget.Gallery"> + </style> + + <style name="Widget.Holo.Light.GestureOverlayView" parent="Widget.GestureOverlayView"> + </style> + + <style name="Widget.Holo.Light.GridView" parent="Widget.GridView"> + </style> + + <style name="Widget.Holo.Light.ImageButton" parent="Widget.ImageButton"> + </style> + + <style name="Widget.Holo.Light.ImageWell" parent="Widget.ImageWell"> + </style> + + <style name="Widget.Holo.Light.ListView" parent="Widget.ListView"> + </style> + + <style name="Widget.Holo.Light.ListView.White"> + </style> + + <style name="Widget.Holo.Light.PopupWindow" parent="Widget.PopupWindow"> + </style> + + <style name="Widget.Holo.Light.ProgressBar" parent="Widget.ProgressBar"> + </style> + + <style name="Widget.Holo.Light.ProgressBar.Horizontal" parent="Widget.ProgressBar.Horizontal"> + </style> + + <style name="Widget.Holo.Light.ProgressBar.Small" parent="Widget.ProgressBar.Small"> + </style> + + <style name="Widget.Holo.Light.ProgressBar.Small.Title" parent="Widget.ProgressBar.Small.Title"> + </style> + + <style name="Widget.Holo.Light.ProgressBar.Large" parent="Widget.ProgressBar.Large"> + </style> + + <style name="Widget.Holo.Light.ProgressBar.Inverse" parent="Widget.ProgressBar.Inverse"> + </style> + + <style name="Widget.Holo.Light.ProgressBar.Small.Inverse" parent="Widget.ProgressBar.Small.Inverse"> + </style> + + <style name="Widget.Holo.Light.ProgressBar.Large.Inverse" parent="Widget.ProgressBar.Large.Inverse"> + </style> + + <style name="Widget.Holo.Light.SeekBar" parent="Widget.SeekBar"> + </style> + + <style name="Widget.Holo.Light.RatingBar" parent="Widget.RatingBar"> + </style> + + <style name="Widget.Holo.Light.RatingBar.Indicator" parent="Widget.RatingBar.Indicator"> + </style> + + <style name="Widget.Holo.Light.RatingBar.Small"> + </style> + + <style name="Widget.Holo.Light.CompoundButton.RadioButton" parent="Widget.CompoundButton.RadioButton"> + </style> + + <style name="Widget.Holo.Light.ScrollView" parent="Widget.ScrollView"> + </style> + + <style name="Widget.Holo.Light.HorizontalScrollView" parent="Widget.HorizontalScrollView"> + </style> + + <style name="Widget.Holo.Light.Spinner" parent="Widget.Spinner.DropDown"> + </style> + + <style name="Widget.Holo.Light.Spinner.DropDown"> + </style> + + <style name="Widget.Holo.Light.CompoundButton.Star" parent="Widget.CompoundButton.Star"> + </style> + + <style name="Widget.Holo.Light.TabWidget" parent="Widget.TabWidget"> + </style> + + <style name="Widget.Holo.Light.WebTextView" parent="Widget.WebTextView"> + </style> + + <style name="Widget.Holo.Light.WebView" parent="Widget.WebView"> + </style> + + <style name="Widget.Holo.Light.DropDownItem" parent="Widget.DropDownItem"> + </style> + + <style name="Widget.Holo.Light.DropDownItem.Spinner"> + </style> + + <style name="Widget.Holo.Light.TextView.SpinnerItem" parent="Widget.TextView.SpinnerItem"> + </style> + + <style name="Widget.Holo.Light.KeyboardView" parent="Widget.KeyboardView"> + </style> + + <style name="Widget.Holo.Light.QuickContactBadge.WindowSmall" parent="Widget.QuickContactBadge.WindowSmall"> + </style> + + <style name="Widget.Holo.Light.QuickContactBadge.WindowMedium" parent="Widget.QuickContactBadge.WindowMedium"> + </style> + + <style name="Widget.Holo.Light.QuickContactBadge.WindowLarge" parent="Widget.QuickContactBadge.WindowLarge"> + </style> + + <style name="Widget.Holo.Light.QuickContactBadgeSmall.WindowSmall" parent="Widget.QuickContactBadgeSmall.WindowSmall"> + </style> + + <style name="Widget.Holo.Light.QuickContactBadgeSmall.WindowMedium" parent="Widget.QuickContactBadgeSmall.WindowMedium"> + </style> + + <style name="Widget.Holo.Light.QuickContactBadgeSmall.WindowLarge" parent="Widget.QuickContactBadgeSmall.WindowLarge"> + </style> + + <style name="Widget.Holo.Light.ListPopupWindow" parent="Widget.ListPopupWindow"> + </style> + + <style name="Widget.Holo.Light.PopupMenu" parent="Widget.PopupMenu"> + </style> + + <style name="Widget.Holo.Light.ActionButton" parent="Widget.ActionButton"> + </style> + + <style name="Widget.Holo.Light.ActionButton.Overflow" parent="Widget.ActionButton.Overflow"> + </style> + + <style name="Widget.Holo.Light.ActionBarView_TabView" parent="Widget.ActionBarView_TabView"> + </style> + + <style name="Widget.Holo.Light.ActionBarView_TabBar" parent="Widget.ActionBarView_TabBar"> + </style> + + <style name="Widget.Holo.Light.ActionBarView_TabText" parent="Widget.ActionBarView_TabText"> + </style> + + <style name="Widget.Holo.Light.ActionMode" parent="Widget.ActionMode"> + <item name="android:background">@android:drawable/cab_holo_light</item> + <item name="android:titleTextStyle">@android:style/TextAppearance.Holo.Widget.ActionMode.Title</item> + <item name="android:subtitleTextStyle">@android:style/TextAppearance.Holo.Widget.ActionMode.Subtitle</item> + </style> + + <style name="Widget.Holo.Light.ActionButton.CloseMode" parent="Widget.ActionButton.CloseMode"> + </style> + + <style name="Widget.Holo.Light.ActionBar" parent="Widget.ActionBar"> + </style> + + <!-- Animation Styles --> + + <style name="Animation.Holo" parent="Animation"> + </style> + + <style name="Animation.Holo.Activity" parent="Animation.Activity"> + </style> + + <style name="Animation.Holo.Dialog" parent="Animation.Dialog"> + </style> + + <!-- Dialog styles --> + + <style name="AlertDialog.Holo" parent="AlertDialog"> + <item name="fullDark">@android:drawable/dialog_full_holo</item> + <item name="topDark">@android:drawable/dialog_top_holo</item> + <item name="centerDark">@android:drawable/dialog_middle_holo</item> + <item name="bottomDark">@android:drawable/dialog_bottom_holo</item> + <item name="fullBright">@android:drawable/dialog_full_holo</item> + <item name="topBright">@android:drawable/dialog_top_holo</item> + <item name="centerBright">@android:drawable/dialog_middle_holo</item> + <item name="bottomBright">@android:drawable/dialog_bottom_holo</item> + <item name="bottomMedium">@android:drawable/dialog_bottom_holo</item> + <item name="centerMedium">@android:drawable/dialog_middle_holo</item> + </style> + + <!-- Window title --> + <style name="WindowTitleBackground.Holo"> + <item name="android:background">@android:drawable/title_bar</item> + </style> + + <style name="WindowTitle.Holo"> + <item name="android:singleLine">true</item> + <item name="android:textAppearance">@style/TextAppearance.Holo.WindowTitle</item> + <item name="android:shadowColor">#BB000000</item> + <item name="android:shadowRadius">2.75</item> + </style> + + <style name="DialogWindowTitle.Holo"> + <item name="android:maxLines">1</item> + <item name="android:scrollHorizontally">true</item> + <item name="android:textAppearance">@style/TextAppearance.Holo.DialogWindowTitle</item> + </style> + </resources> diff --git a/core/res/res/values/themes.xml b/core/res/res/values/themes.xml index 9425fc4743ba..9f9f59e2cb8f 100644 --- a/core/res/res/values/themes.xml +++ b/core/res/res/values/themes.xml @@ -57,6 +57,7 @@ <item name="textColorHighlightInverse">@android:color/highlighted_text_light</item> <item name="textColorLink">@android:color/link_text_dark</item> <item name="textColorLinkInverse">@android:color/link_text_light</item> + <item name="textColorAlertDialogListItem">@android:color/primary_text_light_disable_only</item> <item name="textAppearanceLarge">@android:style/TextAppearance.Large</item> <item name="textAppearanceMedium">@android:style/TextAppearance.Medium</item> @@ -102,6 +103,8 @@ <item name="activatedBackgroundIndicator">@android:drawable/activated_background</item> + <item name="listDividerAlertDialog">@android:drawable/divider_horizontal_bright</item> + <item name="expandableListPreferredItemPaddingLeft">40dip</item> <item name="expandableListPreferredChildPaddingLeft"> ?android:attr/expandableListPreferredItemPaddingLeft</item> @@ -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. --> <style name="Theme.Holo"> - <item name="editTextBackground">@android:drawable/edit_text_holo_dark</item> + <item name="colorForeground">@android:color/bright_foreground_holo_dark</item> + <item name="colorForegroundInverse">@android:color/bright_foreground_inverse_holo_dark</item> + <item name="colorBackground">@android:color/background_holo_dark</item> + <item name="colorBackgroundCacheHint">?android:attr/colorBackground</item> + <item name="disabledAlpha">0.5</item> + <item name="backgroundDimAmount">0.6</item> + + <!-- Text styles --> + <item name="textAppearance">@android:style/TextAppearance.Holo</item> + <item name="textAppearanceInverse">@android:style/TextAppearance.Holo.Inverse</item> + + <item name="textColorPrimary">@android:color/primary_text_holo_dark</item> + <item name="textColorSecondary">@android:color/secondary_text_holo_dark</item> + <item name="textColorTertiary">@android:color/tertiary_text_holo_dark</item> + <item name="textColorPrimaryInverse">@android:color/primary_text_holo_light</item> + <item name="textColorSecondaryInverse">@android:color/secondary_text_holo_light</item> + <item name="textColorTertiaryInverse">@android:color/tertiary_text_holo_light</item> + <item name="textColorPrimaryDisableOnly">@android:color/primary_text_disable_only_holo_dark</item> + <item name="textColorPrimaryInverseDisableOnly">@android:color/primary_text_disable_only_holo_light</item> + <item name="textColorPrimaryNoDisable">@android:color/primary_text_nodisable_holo_dark</item> + <item name="textColorSecondaryNoDisable">@android:color/secondary_text_nodisable_holo_dark</item> + <item name="textColorPrimaryInverseNoDisable">@android:color/primary_text_nodisable_holo_light</item> + <item name="textColorSecondaryInverseNoDisable">@android:color/secondary_text_nodisable_holo_light</item> + <item name="textColorHint">@android:color/hint_foreground_holo_dark</item> + <item name="textColorHintInverse">@android:color/hint_foreground_holo_light</item> + <item name="textColorSearchUrl">@android:color/search_url_text_holo</item> + <item name="textColorHighlight">@android:color/highlighted_text_holo_dark</item> + <item name="textColorHighlightInverse">@android:color/highlighted_text_holo_light</item> + <item name="textColorLink">@android:color/link_text_holo_dark</item> + <item name="textColorLinkInverse">@android:color/link_text_holo_light</item> + <item name="textColorAlertDialogListItem">@android:color/primary_text_holo_dark</item> + + <item name="textAppearanceLarge">@android:style/TextAppearance.Holo.Large</item> + <item name="textAppearanceMedium">@android:style/TextAppearance.Holo.Medium</item> + <item name="textAppearanceSmall">@android:style/TextAppearance.Holo.Small</item> + <item name="textAppearanceLargeInverse">@android:style/TextAppearance.Holo.Large.Inverse</item> + <item name="textAppearanceMediumInverse">@android:style/TextAppearance.Holo.Medium.Inverse</item> + <item name="textAppearanceSmallInverse">@android:style/TextAppearance.Holo.Small.Inverse</item> + <item name="textAppearanceSearchResultTitle">@android:style/TextAppearance.Holo.SearchResult.Title</item> + <item name="textAppearanceSearchResultSubtitle">@android:style/TextAppearance.Holo.SearchResult.Subtitle</item> + + <item name="textAppearanceButton">@android:style/TextAppearance.Holo.Widget.Button</item> + <item name="editTextColor">?android:attr/textColorPrimary</item> - <item name="android:windowActionBar">true</item> - <item name="android:spinnerStyle">?android:attr/dropDownSpinnerStyle</item> + <item name="editTextBackground">@android:drawable/edit_text_holo_dark</item> + + <item name="candidatesTextStyleSpans">@android:string/candidates_style</item> + + <item name="textCheckMark">@android:drawable/indicator_check_mark_dark</item> + <item name="textCheckMarkInverse">@android:drawable/indicator_check_mark_light</item> + + <item name="textAppearanceLargePopupMenu">@android:style/TextAppearance.Holo.Widget.PopupMenu.Large</item> + <item name="textAppearanceSmallPopupMenu">@android:style/TextAppearance.Holo.Widget.PopupMenu.Small</item> + + <!-- Button styles --> + <item name="buttonStyle">@android:style/Widget.Holo.Button</item> + + <item name="buttonStyleSmall">@android:style/Widget.Holo.Button.Small</item> + <item name="buttonStyleInset">@android:style/Widget.Holo.Button.Inset</item> + + <item name="buttonStyleToggle">@android:style/Widget.Holo.Button.Toggle</item> + + <!-- List attributes --> + <item name="listPreferredItemHeight">64dip</item> + <!-- @hide --> + <item name="searchResultListItemHeight">58dip</item> + <item name="listDivider">@drawable/divider_horizontal_holo_dark</item> + <item name="listSeparatorTextViewStyle">@android:style/Widget.Holo.TextView.ListSeparator</item> + <item name="listChoiceIndicatorSingle">@android:drawable/btn_radio_holo_dark</item> <item name="listChoiceIndicatorMultiple">@android:drawable/btn_check_holo_dark</item> + + <item name="listChoiceBackgroundIndicator">@android:drawable/list_selected_background</item> + + <item name="activatedBackgroundIndicator">@android:drawable/activated_background</item> + + <item name="listDividerAlertDialog">@android:drawable/divider_horizontal_holo_dark</item> + + <item name="expandableListPreferredItemPaddingLeft">40dip</item> + <item name="expandableListPreferredChildPaddingLeft"> + ?android:attr/expandableListPreferredItemPaddingLeft</item> + + <item name="expandableListPreferredItemIndicatorLeft">3dip</item> + <item name="expandableListPreferredItemIndicatorRight">33dip</item> + <item name="expandableListPreferredChildIndicatorLeft"> + ?android:attr/expandableListPreferredItemIndicatorLeft</item> + <item name="expandableListPreferredChildIndicatorRight"> + ?android:attr/expandableListPreferredItemIndicatorRight</item> + + <!-- Gallery attributes --> + <item name="galleryItemBackground">@android:drawable/gallery_item_background</item> + + <!-- Window attributes --> + <item name="windowBackground">@android:drawable/screen_background_holo_dark</item> + <item name="windowFrame">@null</item> + <item name="windowNoTitle">false</item> + <item name="windowFullscreen">false</item> + <item name="windowIsFloating">false</item> + <item name="windowContentOverlay">@android:drawable/title_bar_shadow</item> + <item name="windowShowWallpaper">false</item> + <item name="windowTitleStyle">@android:style/WindowTitle.Holo</item> + <item name="windowTitleSize">25dip</item> + <item name="windowTitleBackgroundStyle">@android:style/WindowTitleBackground.Holo</item> + <item name="android:windowAnimationStyle">@android:style/Animation.Holo.Activity</item> + <item name="android:windowSoftInputMode">stateUnspecified|adjustUnspecified</item> + <item name="windowActionBar">true</item> + <item name="windowActionModeOverlay">false</item> + + <!-- Dialog attributes --> + <item name="alertDialogStyle">@android:style/AlertDialog.Holo</item> + + <!-- Panel attributes --> + <item name="panelBackground">@android:drawable/menu_background</item> + <item name="panelFullBackground">@android:drawable/menu_background_fill_parent_width</item> + <!-- These three attributes do not seems to be used by the framework. Declared public though --> + <item name="panelColorBackground">#000</item> + <item name="panelColorForeground">?android:attr/textColorPrimary</item> + <item name="panelTextAppearance">?android:attr/textAppearance</item> + + <!-- Scrollbar attributes --> + <item name="scrollbarFadeDuration">250</item> + <item name="scrollbarDefaultDelayBeforeFade">300</item> + <item name="scrollbarSize">10dip</item> + <item name="scrollbarThumbHorizontal">@android:drawable/scrollbar_handle_horizontal</item> + <item name="scrollbarThumbVertical">@android:drawable/scrollbar_handle_vertical</item> + <item name="scrollbarTrackHorizontal">@null</item> + <item name="scrollbarTrackVertical">@null</item> + + <!-- Text selection handle attributes --> + <item name="textSelectHandleLeft">@android:drawable/text_select_handle_middle</item> + <item name="textSelectHandleRight">@android:drawable/text_select_handle_middle</item> + <item name="textSelectHandle">@android:drawable/text_select_handle_middle</item> + <item name="textSelectHandleWindowStyle">@android:style/Widget.Holo.TextSelectHandle</item> + + <!-- Widget styles --> + <item name="absListViewStyle">@android:style/Widget.Holo.AbsListView</item> + <item name="autoCompleteTextViewStyle">@android:style/Widget.Holo.AutoCompleteTextView</item> + <item name="checkboxStyle">@android:style/Widget.Holo.CompoundButton.CheckBox</item> + <item name="dropDownListViewStyle">@android:style/Widget.Holo.ListView.DropDown</item> + <item name="editTextStyle">@android:style/Widget.Holo.EditText</item> + <item name="expandableListViewStyle">@android:style/Widget.Holo.ExpandableListView</item> + <item name="expandableListViewWhiteStyle">@android:style/Widget.Holo.ExpandableListView.White</item> + <item name="galleryStyle">@android:style/Widget.Holo.Gallery</item> + <item name="gestureOverlayViewStyle">@android:style/Widget.Holo.GestureOverlayView</item> + <item name="gridViewStyle">@android:style/Widget.Holo.GridView</item> + <item name="imageButtonStyle">@android:style/Widget.Holo.ImageButton</item> + <item name="imageWellStyle">@android:style/Widget.Holo.ImageWell</item> + <item name="listViewStyle">@android:style/Widget.Holo.ListView</item> + <item name="listViewWhiteStyle">@android:style/Widget.Holo.ListView.White</item> + <item name="popupWindowStyle">@android:style/Widget.Holo.PopupWindow</item> + <item name="progressBarStyle">@android:style/Widget.Holo.ProgressBar</item> + <item name="progressBarStyleHorizontal">@android:style/Widget.Holo.ProgressBar.Horizontal</item> + <item name="progressBarStyleSmall">@android:style/Widget.Holo.ProgressBar.Small</item> + <item name="progressBarStyleSmallTitle">@android:style/Widget.Holo.ProgressBar.Small.Title</item> + <item name="progressBarStyleLarge">@android:style/Widget.Holo.ProgressBar.Large</item> + <item name="progressBarStyleInverse">@android:style/Widget.Holo.ProgressBar.Inverse</item> + <item name="progressBarStyleSmallInverse">@android:style/Widget.Holo.ProgressBar.Small.Inverse</item> + <item name="progressBarStyleLargeInverse">@android:style/Widget.Holo.ProgressBar.Large.Inverse</item> + <item name="seekBarStyle">@android:style/Widget.Holo.SeekBar</item> + <item name="ratingBarStyle">@android:style/Widget.Holo.RatingBar</item> + <item name="ratingBarStyleIndicator">@android:style/Widget.Holo.RatingBar.Indicator</item> + <item name="ratingBarStyleSmall">@android:style/Widget.Holo.RatingBar.Small</item> + <item name="radioButtonStyle">@android:style/Widget.Holo.CompoundButton.RadioButton</item> + <item name="scrollViewStyle">@android:style/Widget.Holo.ScrollView</item> + <item name="horizontalScrollViewStyle">@android:style/Widget.Holo.HorizontalScrollView</item> + <item name="spinnerStyle">?android:attr/dropDownSpinnerStyle</item> + <item name="dropDownSpinnerStyle">@android:style/Widget.Holo.Spinner.DropDown</item> + <item name="starStyle">@android:style/Widget.Holo.CompoundButton.Star</item> + <item name="tabWidgetStyle">@android:style/Widget.Holo.TabWidget</item> + <item name="textViewStyle">@android:style/Widget.Holo.TextView</item> + <item name="webTextViewStyle">@android:style/Widget.Holo.WebTextView</item> + <item name="webViewStyle">@android:style/Widget.Holo.WebView</item> + <item name="dropDownItemStyle">@android:style/Widget.Holo.DropDownItem</item> + <item name="spinnerDropDownItemStyle">@android:style/Widget.Holo.DropDownItem.Spinner</item> + <item name="spinnerItemStyle">@android:style/Widget.Holo.TextView.SpinnerItem</item> + <item name="dropDownHintAppearance">@android:style/TextAppearance.Holo.Widget.DropDownHint</item> + <item name="keyboardViewStyle">@android:style/Widget.Holo.KeyboardView</item> + <item name="quickContactBadgeStyleWindowSmall">@android:style/Widget.Holo.QuickContactBadge.WindowSmall</item> + <item name="quickContactBadgeStyleWindowMedium">@android:style/Widget.Holo.QuickContactBadge.WindowMedium</item> + <item name="quickContactBadgeStyleWindowLarge">@android:style/Widget.Holo.QuickContactBadge.WindowLarge</item> + <item name="quickContactBadgeStyleSmallWindowSmall">@android:style/Widget.Holo.QuickContactBadgeSmall.WindowSmall</item> + <item name="quickContactBadgeStyleSmallWindowMedium">@android:style/Widget.Holo.QuickContactBadgeSmall.WindowMedium</item> + <item name="quickContactBadgeStyleSmallWindowLarge">@android:style/Widget.Holo.QuickContactBadgeSmall.WindowLarge</item> + <item name="listPopupWindowStyle">@android:style/Widget.Holo.ListPopupWindow</item> + <item name="popupMenuStyle">@android:style/Widget.Holo.PopupMenu</item> + + <!-- Preference styles --> + <item name="preferenceScreenStyle">@android:style/Preference.PreferenceScreen</item> + <item name="preferenceCategoryStyle">@android:style/Preference.Category</item> + <item name="preferenceStyle">@android:style/Preference</item> + <item name="preferenceInformationStyle">@android:style/Preference.Information</item> + <item name="checkBoxPreferenceStyle">@android:style/Preference.CheckBoxPreference</item> + <item name="yesNoPreferenceStyle">@android:style/Preference.DialogPreference.YesNoPreference</item> + <item name="dialogPreferenceStyle">@android:style/Preference.DialogPreference</item> + <item name="editTextPreferenceStyle">@android:style/Preference.DialogPreference.EditTextPreference</item> + <item name="ringtonePreferenceStyle">@android:style/Preference.RingtonePreference</item> + <item name="preferenceLayoutChild">@android:layout/preference_child</item> + + <!-- Search widget styles --> + <item name="searchWidgetCorpusItemBackground">@android:color/search_widget_corpus_item_background</item> + + <!-- Action bar styles --> + <item name="actionDropDownStyle">@android:style/Widget.Holo.Spinner.DropDown</item> + <item name="actionButtonStyle">@android:style/Widget.Holo.ActionButton</item> + <item name="actionOverflowButtonStyle">@android:style/Widget.Holo.ActionButton.Overflow</item> + <item name="actionButtonPadding">12dip</item> + <item name="actionModeBackground">@android:drawable/cab_holo_dark</item> + <item name="actionModeCloseDrawable">@android:drawable/cab_ic_close_holo</item> + <item name="actionBarTabStyle">@style/Widget.Holo.ActionBarView_TabView</item> + <item name="actionBarTabBarStyle">@style/Widget.Holo.ActionBarView_TabBar</item> + <item name="actionBarTabTextStyle">@style/Widget.Holo.ActionBarView_TabText</item> + <item name="actionModeStyle">@style/Widget.Holo.ActionMode</item> + <item name="actionModeCloseButtonStyle">@style/Widget.Holo.ActionButton.CloseMode</item> + <item name="actionBarStyle">@android:style/Widget.Holo.ActionBar</item> + <item name="actionBarSize">50dip</item> + </style> <!-- New Honeycomb holographic theme. Light version. The widgets in the @@ -621,14 +840,229 @@ must ensure that any background they use with this theme is itself light; otherwise, it will be difficult to see the widgets. The new UI style also includes a full action bar by default. --> - <style name="Theme.Light.Holo"> + <style name="Theme.Holo.Light" parent="Theme.Light"> + <item name="colorForeground">@android:color/bright_foreground_holo_light</item> + <item name="colorForegroundInverse">@android:color/bright_foreground_inverse_holo_light</item> + <item name="colorBackground">@android:color/background_holo_light</item> + <item name="colorBackgroundCacheHint">?android:attr/colorBackground</item> + <item name="disabledAlpha">0.5</item> + <item name="backgroundDimAmount">0.6</item> + + <!-- Text styles --> + <item name="textAppearance">@android:style/TextAppearance.Holo.Light</item> + <item name="textAppearanceInverse">@android:style/TextAppearance.Holo.Light.Inverse</item> + + <item name="textColorPrimary">@android:color/primary_text_holo_light</item> + <item name="textColorSecondary">@android:color/secondary_text_holo_light</item> + <item name="textColorTertiary">@android:color/tertiary_text_holo_light</item> + <item name="textColorPrimaryInverse">@android:color/primary_text_holo_dark</item> + <item name="textColorSecondaryInverse">@android:color/secondary_text_holo_dark</item> + <item name="textColorTertiaryInverse">@android:color/tertiary_text_holo_dark</item> + <item name="textColorPrimaryDisableOnly">@android:color/primary_text_disable_only_holo_light</item> + <item name="textColorPrimaryInverseDisableOnly">@android:color/primary_text_disable_only_holo_dark</item> + <item name="textColorPrimaryNoDisable">@android:color/primary_text_nodisable_holo_light</item> + <item name="textColorSecondaryNoDisable">@android:color/secondary_text_nodisable_holo_light</item> + <item name="textColorPrimaryInverseNoDisable">@android:color/primary_text_nodisable_holo_dark</item> + <item name="textColorSecondaryInverseNoDisable">@android:color/secondary_text_nodisable_holo_dark</item> + <item name="textColorHint">@android:color/hint_foreground_holo_light</item> + <item name="textColorHintInverse">@android:color/hint_foreground_holo_dark</item> + <item name="textColorSearchUrl">@android:color/search_url_text_holo</item> + <item name="textColorHighlight">@android:color/highlighted_text_holo_light</item> + <item name="textColorHighlightInverse">@android:color/highlighted_text_holo_dark</item> + <item name="textColorLink">@android:color/link_text_holo_light</item> + <item name="textColorLinkInverse">@android:color/link_text_holo_dark</item> + <item name="textColorAlertDialogListItem">@android:color/primary_text_holo_dark</item> + + <item name="textAppearanceLarge">@android:style/TextAppearance.Holo.Light.Large</item> + <item name="textAppearanceMedium">@android:style/TextAppearance.Holo.Light.Medium</item> + <item name="textAppearanceSmall">@android:style/TextAppearance.Holo.Light.Small</item> + <item name="textAppearanceLargeInverse">@android:style/TextAppearance.Holo.Light.Large.Inverse</item> + <item name="textAppearanceMediumInverse">@android:style/TextAppearance.Holo.Light.Medium.Inverse</item> + <item name="textAppearanceSmallInverse">@android:style/TextAppearance.Holo.Light.Small.Inverse</item> + <item name="textAppearanceSearchResultTitle">@android:style/TextAppearance.Holo.Light.SearchResult.Title</item> + <item name="textAppearanceSearchResultSubtitle">@android:style/TextAppearance.Holo.Light.SearchResult.Subtitle</item> + + <item name="textAppearanceButton">@android:style/TextAppearance.Holo.Light.Widget.Button</item> + + <item name="editTextColor">?android:attr/textColorPrimaryInverse</item> <item name="editTextBackground">@android:drawable/edit_text_holo_light</item> - <item name="android:windowActionBar">true</item> - <item name="android:spinnerStyle">?android:attr/dropDownSpinnerStyle</item> - <item name="listChoiceIndicatorSingle">@android:drawable/btn_radio_holo_light</item> - <item name="listChoiceIndicatorMultiple">@android:drawable/btn_check_holo_light</item> - </style> + <item name="candidatesTextStyleSpans">@android:string/candidates_style</item> + + <item name="textCheckMark">@android:drawable/indicator_check_mark_light</item> + <item name="textCheckMarkInverse">@android:drawable/indicator_check_mark_dark</item> + + <item name="textAppearanceLargePopupMenu">@android:style/TextAppearance.Holo.Light.Widget.PopupMenu.Large</item> + <item name="textAppearanceSmallPopupMenu">@android:style/TextAppearance.Holo.Light.Widget.PopupMenu.Small</item> + + <!-- Button styles --> + <item name="buttonStyle">@android:style/Widget.Holo.Light.Button</item> + + <item name="buttonStyleSmall">@android:style/Widget.Holo.Light.Button.Small</item> + <item name="buttonStyleInset">@android:style/Widget.Holo.Light.Button.Inset</item> + + <item name="buttonStyleToggle">@android:style/Widget.Holo.Light.Button.Toggle</item> + + <!-- List attributes --> + <item name="listPreferredItemHeight">64dip</item> + <!-- @hide --> + <item name="searchResultListItemHeight">58dip</item> + <item name="listDivider">@drawable/divider_horizontal_holo_dark</item> + <item name="listSeparatorTextViewStyle">@android:style/Widget.Holo.Light.TextView.ListSeparator</item> + + <item name="listChoiceIndicatorSingle">@android:drawable/btn_radio</item> + <item name="listChoiceIndicatorMultiple">@android:drawable/btn_check</item> + + <item name="listChoiceBackgroundIndicator">@android:drawable/list_selected_background</item> + + <item name="activatedBackgroundIndicator">@android:drawable/activated_background</item> + + <item name="expandableListPreferredItemPaddingLeft">40dip</item> + <item name="expandableListPreferredChildPaddingLeft"> + ?android:attr/expandableListPreferredItemPaddingLeft</item> + + <item name="expandableListPreferredItemIndicatorLeft">3dip</item> + <item name="expandableListPreferredItemIndicatorRight">33dip</item> + <item name="expandableListPreferredChildIndicatorLeft"> + ?android:attr/expandableListPreferredItemIndicatorLeft</item> + <item name="expandableListPreferredChildIndicatorRight"> + ?android:attr/expandableListPreferredItemIndicatorRight</item> + + <item name="listDividerAlertDialog">@android:drawable/divider_horizontal_holo_dark</item> + + <!-- Gallery attributes --> + <item name="galleryItemBackground">@android:drawable/gallery_item_background</item> + + <!-- Window attributes --> + <item name="windowBackground">@android:drawable/screen_background_holo_light</item> + <item name="windowFrame">@null</item> + <item name="windowNoTitle">false</item> + <item name="windowFullscreen">false</item> + <item name="windowIsFloating">false</item> + <item name="windowContentOverlay">@android:drawable/title_bar_shadow</item> + <item name="windowShowWallpaper">false</item> + <item name="windowTitleStyle">@android:style/WindowTitle.Holo</item> + <item name="windowTitleSize">25dip</item> + <item name="windowTitleBackgroundStyle">@android:style/WindowTitleBackground.Holo</item> + <item name="android:windowAnimationStyle">@android:style/Animation.Holo.Activity</item> + <item name="android:windowSoftInputMode">stateUnspecified|adjustUnspecified</item> + <item name="windowActionBar">true</item> + <item name="windowActionModeOverlay">false</item> + + <!-- Dialog attributes --> + <item name="alertDialogStyle">@android:style/AlertDialog.Holo</item> + + <!-- Panel attributes --> + <item name="panelBackground">@android:drawable/menu_background</item> + <item name="panelFullBackground">@android:drawable/menu_background_fill_parent_width</item> + <!-- These three attributes do not seems to be used by the framework. Declared public though --> + <item name="panelColorBackground">#000</item> + <item name="panelColorForeground">?android:attr/textColorPrimary</item> + <item name="panelTextAppearance">?android:attr/textAppearance</item> + + <!-- Scrollbar attributes --> + <item name="scrollbarFadeDuration">250</item> + <item name="scrollbarDefaultDelayBeforeFade">300</item> + <item name="scrollbarSize">10dip</item> + <item name="scrollbarThumbHorizontal">@android:drawable/scrollbar_handle_horizontal</item> + <item name="scrollbarThumbVertical">@android:drawable/scrollbar_handle_vertical</item> + <item name="scrollbarTrackHorizontal">@null</item> + <item name="scrollbarTrackVertical">@null</item> + + <!-- Text selection handle attributes --> + <item name="textSelectHandleLeft">@android:drawable/text_select_handle_middle</item> + <item name="textSelectHandleRight">@android:drawable/text_select_handle_middle</item> + <item name="textSelectHandle">@android:drawable/text_select_handle_middle</item> + <item name="textSelectHandleWindowStyle">@android:style/Widget.Holo.TextSelectHandle</item> + + <!-- Widget styles --> + <item name="absListViewStyle">@android:style/Widget.Holo.AbsListView</item> + <item name="autoCompleteTextViewStyle">@android:style/Widget.Holo.AutoCompleteTextView</item> + <item name="checkboxStyle">@android:style/Widget.Holo.CompoundButton.CheckBox</item> + <item name="dropDownListViewStyle">@android:style/Widget.Holo.ListView.DropDown</item> + <item name="editTextStyle">@android:style/Widget.Holo.EditText</item> + <item name="expandableListViewStyle">@android:style/Widget.Holo.ExpandableListView</item> + <item name="expandableListViewWhiteStyle">@android:style/Widget.Holo.ExpandableListView.White</item> + <item name="galleryStyle">@android:style/Widget.Holo.Gallery</item> + <item name="gestureOverlayViewStyle">@android:style/Widget.Holo.GestureOverlayView</item> + <item name="gridViewStyle">@android:style/Widget.Holo.GridView</item> + <item name="imageButtonStyle">@android:style/Widget.Holo.ImageButton</item> + <item name="imageWellStyle">@android:style/Widget.Holo.ImageWell</item> + <item name="listViewStyle">@android:style/Widget.Holo.ListView</item> + <item name="listViewWhiteStyle">@android:style/Widget.Holo.ListView.White</item> + <item name="popupWindowStyle">@android:style/Widget.Holo.PopupWindow</item> + <item name="progressBarStyle">@android:style/Widget.Holo.ProgressBar</item> + <item name="progressBarStyleHorizontal">@android:style/Widget.Holo.ProgressBar.Horizontal</item> + <item name="progressBarStyleSmall">@android:style/Widget.Holo.ProgressBar.Small</item> + <item name="progressBarStyleSmallTitle">@android:style/Widget.Holo.ProgressBar.Small.Title</item> + <item name="progressBarStyleLarge">@android:style/Widget.Holo.ProgressBar.Large</item> + <item name="progressBarStyleInverse">@android:style/Widget.Holo.ProgressBar.Inverse</item> + <item name="progressBarStyleSmallInverse">@android:style/Widget.Holo.ProgressBar.Small.Inverse</item> + <item name="progressBarStyleLargeInverse">@android:style/Widget.Holo.ProgressBar.Large.Inverse</item> + <item name="seekBarStyle">@android:style/Widget.Holo.SeekBar</item> + <item name="ratingBarStyle">@android:style/Widget.Holo.RatingBar</item> + <item name="ratingBarStyleIndicator">@android:style/Widget.Holo.RatingBar.Indicator</item> + <item name="ratingBarStyleSmall">@android:style/Widget.Holo.RatingBar.Small</item> + <item name="radioButtonStyle">@android:style/Widget.Holo.CompoundButton.RadioButton</item> + <item name="scrollViewStyle">@android:style/Widget.Holo.ScrollView</item> + <item name="horizontalScrollViewStyle">@android:style/Widget.Holo.HorizontalScrollView</item> + <item name="spinnerStyle">?android:attr/dropDownSpinnerStyle</item> + <item name="dropDownSpinnerStyle">@android:style/Widget.Holo.Spinner.DropDown</item> + <item name="starStyle">@android:style/Widget.Holo.CompoundButton.Star</item> + <item name="tabWidgetStyle">@android:style/Widget.Holo.TabWidget</item> + <item name="textViewStyle">@android:style/Widget.Holo.TextView</item> + <item name="webTextViewStyle">@android:style/Widget.Holo.WebTextView</item> + <item name="webViewStyle">@android:style/Widget.Holo.WebView</item> + <item name="dropDownItemStyle">@android:style/Widget.Holo.DropDownItem</item> + <item name="spinnerDropDownItemStyle">@android:style/Widget.Holo.DropDownItem.Spinner</item> + <item name="spinnerItemStyle">@android:style/Widget.Holo.TextView.SpinnerItem</item> + <item name="dropDownHintAppearance">@android:style/TextAppearance.Holo.Widget.DropDownHint</item> + <item name="keyboardViewStyle">@android:style/Widget.Holo.KeyboardView</item> + <item name="quickContactBadgeStyleWindowSmall">@android:style/Widget.Holo.QuickContactBadge.WindowSmall</item> + <item name="quickContactBadgeStyleWindowMedium">@android:style/Widget.Holo.QuickContactBadge.WindowMedium</item> + <item name="quickContactBadgeStyleWindowLarge">@android:style/Widget.Holo.QuickContactBadge.WindowLarge</item> + <item name="quickContactBadgeStyleSmallWindowSmall">@android:style/Widget.Holo.QuickContactBadgeSmall.WindowSmall</item> + <item name="quickContactBadgeStyleSmallWindowMedium">@android:style/Widget.Holo.QuickContactBadgeSmall.WindowMedium</item> + <item name="quickContactBadgeStyleSmallWindowLarge">@android:style/Widget.Holo.QuickContactBadgeSmall.WindowLarge</item> + <item name="listPopupWindowStyle">@android:style/Widget.Holo.ListPopupWindow</item> + <item name="popupMenuStyle">@android:style/Widget.Holo.PopupMenu</item> + + <!-- Preference styles --> + <item name="preferenceScreenStyle">@android:style/Preference.PreferenceScreen</item> + <item name="preferenceCategoryStyle">@android:style/Preference.Category</item> + <item name="preferenceStyle">@android:style/Preference</item> + <item name="preferenceInformationStyle">@android:style/Preference.Information</item> + <item name="checkBoxPreferenceStyle">@android:style/Preference.CheckBoxPreference</item> + <item name="yesNoPreferenceStyle">@android:style/Preference.DialogPreference.YesNoPreference</item> + <item name="dialogPreferenceStyle">@android:style/Preference.DialogPreference</item> + <item name="editTextPreferenceStyle">@android:style/Preference.DialogPreference.EditTextPreference</item> + <item name="ringtonePreferenceStyle">@android:style/Preference.RingtonePreference</item> + <item name="preferenceLayoutChild">@android:layout/preference_child</item> + + <!-- Search widget styles --> + <item name="searchWidgetCorpusItemBackground">@android:color/search_widget_corpus_item_background</item> + + <!-- Action bar styles --> + <item name="actionDropDownStyle">@android:style/Widget.Holo.Spinner.DropDown</item> + <item name="actionButtonStyle">@android:style/Widget.Holo.ActionButton</item> + <item name="actionOverflowButtonStyle">@android:style/Widget.Holo.ActionButton.Overflow</item> + <item name="actionButtonPadding">12dip</item> + <item name="actionModeBackground">@android:drawable/cab_holo_light</item> + <item name="actionModeCloseDrawable">@android:drawable/cab_ic_close_holo</item> + <item name="actionBarTabStyle">@style/Widget.Holo.ActionBarView_TabView</item> + <item name="actionBarTabBarStyle">@style/Widget.Holo.ActionBarView_TabBar</item> + <item name="actionBarTabTextStyle">@style/Widget.Holo.ActionBarView_TabText</item> + <item name="actionModeStyle">@style/Widget.Holo.Light.ActionMode</item> + <item name="actionModeCloseButtonStyle">@style/Widget.Holo.ActionButton.CloseMode</item> + <item name="actionBarStyle">@android:style/Widget.Holo.ActionBar</item> + <item name="actionBarSize">50dip</item> + + </style> + + <!-- Development legacy name; if you're using this, switch. --> + <style name="Theme.Light.Holo" parent="Theme.Holo.Light"> + </style> + <!-- Variant of the holographic (dark) theme with no action bar. --> <style name="Theme.Holo.NoActionBar"> <item name="android:windowActionBar">false</item> @@ -655,4 +1089,52 @@ <item name="android:windowContentOverlay">@null</item> </style> + <!-- Dialog themes for Holo --> + + <!-- Holo theme for dialog windows and activities, which is used by the + {@link android.app.Dialog} class. This changes the window to be + floating (not fill the entire screen), and puts a frame around its + contents. You can set this theme on an activity if you would like to + make an activity that looks like a Dialog. + This is the default Dialog theme for applications targeting Honeycomb + or newer. --> + <style name="Theme.Holo.Dialog"> + <item name="android:windowFrame">@null</item> + <item name="android:windowTitleStyle">@android:style/DialogWindowTitle.Holo</item> + <item name="android:windowBackground">@android:drawable/dialog_full_holo</item> + <item name="android:windowIsFloating">true</item> + <item name="android:windowContentOverlay">@null</item> + <item name="android:windowAnimationStyle">@android:style/Animation.Holo.Dialog</item> + <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item> + + <item name="android:colorBackgroundCacheHint">@null</item> + + <item name="textAppearance">@android:style/TextAppearance.Holo</item> + <item name="textAppearanceInverse">@android:style/TextAppearance.Holo.Inverse</item> + </style> + + <!-- Variation of Theme.Holo.Dialog that does not include a frame (or background). + The view hierarchy of the dialog is responsible for drawing all of + its pixels. --> + <style name="Theme.Holo.Dialog.NoFrame"> + <item name="windowBackground">@android:color/transparent</item> + <item name="android:windowFrame">@null</item> + <item name="windowContentOverlay">@null</item> + <item name="android:windowAnimationStyle">@null</item> + <item name="android:backgroundDimEnabled">false</item> + <item name="android:windowIsTranslucent">true</item> + <item name="android:windowNoTitle">true</item> + </style> + + <!-- Holo theme for alert dialog windows, which is used by the + {@link android.app.AlertDialog} class. This is basically a dialog + but sets the background to empty so it can do two-tone backgrounds. + For applications targeting Honeycomb or newer, this is the default + AlertDialog theme. --> + <style name="Theme.Holo.Dialog.Alert"> + <item name="windowBackground">@android:color/transparent</item> + <item name="windowTitleStyle">@android:style/DialogWindowTitle.Holo</item> + <item name="windowContentOverlay">@null</item> + </style> + </resources> |