summaryrefslogtreecommitdiffstats
path: root/core/res/res/layout
diff options
context:
space:
mode:
authorBryan Owens <djbryan3540@gmail.com>2015-12-02 15:51:46 -0600
committerSteve Kondik <shade@chemlab.org>2015-12-04 19:31:35 -0800
commite6458a3380b36ab0e3538159e854b7f815a838f3 (patch)
tree8f145f5e0cda1021f6b744836db8f7bc66cd4faf /core/res/res/layout
parent1356ccdfdb5786ba678ed54b4fab36a6949c5fe4 (diff)
downloadframeworks_base-e6458a3380b36ab0e3538159e854b7f815a838f3.zip
frameworks_base-e6458a3380b36ab0e3538159e854b7f815a838f3.tar.gz
frameworks_base-e6458a3380b36ab0e3538159e854b7f815a838f3.tar.bz2
Themes: Expose "ALL" layouts hard code in frameworks base for themes
Exposing all the hard coded layout colors in the enitre base so themes can have access. Change-Id: I4bc88573d0d7e41fc80d1580ab4e012f48c442d3 Signed-off-by: Bryan Owens <djbryan3540@gmail.com>
Diffstat (limited to 'core/res/res/layout')
-rw-r--r--core/res/res/layout/alert_dialog_holo.xml6
-rw-r--r--core/res/res/layout/alert_dialog_micro.xml8
-rw-r--r--core/res/res/layout/app_permission_item_money.xml4
-rw-r--r--core/res/res/layout/browser_link_context_header.xml2
-rw-r--r--core/res/res/layout/character_picker_button.xml4
-rw-r--r--core/res/res/layout/choose_account_type.xml4
-rw-r--r--core/res/res/layout/dialog_custom_title_holo.xml4
-rw-r--r--core/res/res/layout/dialog_title_holo.xml4
-rw-r--r--core/res/res/layout/dialog_title_icons_holo.xml4
-rw-r--r--core/res/res/layout/keyguard.xml6
-rw-r--r--core/res/res/layout/media_controller.xml4
-rw-r--r--core/res/res/layout/notification_material_action_tombstone.xml4
-rw-r--r--core/res/res/layout/preference_category_material.xml4
-rw-r--r--core/res/res/layout/recent_apps_dialog.xml4
-rw-r--r--core/res/res/layout/recent_apps_icon.xml4
-rw-r--r--core/res/res/layout/remote_views_adapter_default_loading_view.xml6
-rw-r--r--core/res/res/layout/restrictions_pin_setup.xml4
-rw-r--r--core/res/res/layout/simple_dropdown_item_2line.xml4
-rw-r--r--core/res/res/layout/status_bar_latest_event_content.xml4
-rwxr-xr-xcore/res/res/layout/subscription_item_layout.xml6
-rw-r--r--core/res/res/layout/text_edit_action_popup_text.xml4
-rw-r--r--core/res/res/layout/text_edit_paste_window.xml4
-rw-r--r--core/res/res/layout/text_edit_side_paste_window.xml4
-rw-r--r--core/res/res/layout/typing_filter.xml6
-rw-r--r--core/res/res/layout/web_text_view_dropdown.xml6
25 files changed, 57 insertions, 57 deletions
diff --git a/core/res/res/layout/alert_dialog_holo.xml b/core/res/res/layout/alert_dialog_holo.xml
index 34cb21d..d4da2ed 100644
--- a/core/res/res/layout/alert_dialog_holo.xml
+++ b/core/res/res/layout/alert_dialog_holo.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
-** Copyright 2010, The Android Open Source Project
+** Copyright 2015, 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.
@@ -34,7 +34,7 @@
android:layout_width="match_parent"
android:layout_height="2dip"
android:visibility="gone"
- android:background="@android:color/holo_blue_light" />
+ android:background="@color/dialog_divider_color" />
<LinearLayout android:id="@+id/title_template"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -60,7 +60,7 @@
android:layout_width="match_parent"
android:layout_height="2dip"
android:visibility="gone"
- android:background="@android:color/holo_blue_light" />
+ android:background="@color/dialog_divider_color" />
<!-- If the client uses a customTitle, it will be added here. -->
</LinearLayout>
diff --git a/core/res/res/layout/alert_dialog_micro.xml b/core/res/res/layout/alert_dialog_micro.xml
index abdbd16..c380b25 100644
--- a/core/res/res/layout/alert_dialog_micro.xml
+++ b/core/res/res/layout/alert_dialog_micro.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ Copyright (C) 2014 The Android Open Source Project
+ ~ Copyright (C) 2015 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.
@@ -20,7 +20,7 @@
android:id="@+id/parentPanel"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background="@android:color/white"
+ android:background="@color/alert_dialog_micro_background_color"
android:layout_gravity="center"
android:orientation="vertical">
@@ -32,7 +32,7 @@
android:layout_width="match_parent"
android:layout_height="2dip"
android:visibility="gone"
- android:background="@android:color/holo_blue_light" />
+ android:background="@color/dialog_divider_color" />
<LinearLayout android:id="@+id/title_template"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -58,7 +58,7 @@
android:layout_width="match_parent"
android:layout_height="2dip"
android:visibility="gone"
- android:background="@android:color/holo_blue_light" />
+ android:background="@color/dialog_divider_color" />
<!-- If the client uses a customTitle, it will be added here. -->
</LinearLayout>
diff --git a/core/res/res/layout/app_permission_item_money.xml b/core/res/res/layout/app_permission_item_money.xml
index 2056285..a507d01 100644
--- a/core/res/res/layout/app_permission_item_money.xml
+++ b/core/res/res/layout/app_permission_item_money.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -64,7 +64,7 @@
android:id="@+id/perm_money_label"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textSize="16sp"
- android:textColor="@color/perms_costs_money"
+ android:textColor="@color/perms_costs_money_text_color"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@id/perm_money_icon"
diff --git a/core/res/res/layout/browser_link_context_header.xml b/core/res/res/layout/browser_link_context_header.xml
index fef01b3..8bb9a0c 100644
--- a/core/res/res/layout/browser_link_context_header.xml
+++ b/core/res/res/layout/browser_link_context_header.xml
@@ -17,7 +17,7 @@
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/title"
android:textAppearance="?android:attr/textAppearanceLarge"
- android:textColor="@color/white"
+ android:textColor="@color/browser_link_header_text_color"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="2"
diff --git a/core/res/res/layout/character_picker_button.xml b/core/res/res/layout/character_picker_button.xml
index b74e620..17da092 100644
--- a/core/res/res/layout/character_picker_button.xml
+++ b/core/res/res/layout/character_picker_button.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2008 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -21,6 +21,6 @@
android:focusable="false"
android:textAppearance="?android:attr/textAppearanceLarge"
android:background="@drawable/btn_keyboard_key_trans"
- android:textColor="#FFFFFFFF"
+ android:textColor="@color/character_picker_button_text_color"
/>
diff --git a/core/res/res/layout/choose_account_type.xml b/core/res/res/layout/choose_account_type.xml
index 87d1dde..3f710b8 100644
--- a/core/res/res/layout/choose_account_type.xml
+++ b/core/res/res/layout/choose_account_type.xml
@@ -2,7 +2,7 @@
<!--
/* //device/apps/common/assets/res/layout/list_content.xml
**
-** Copyright 2011, The Android Open Source Project
+** Copyright 2015, 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.
@@ -24,7 +24,7 @@
<View android:layout_height="3dip"
android:layout_width="match_parent"
- android:background="#323232"/>
+ android:background="@color/choose_account_type_background_color"/>
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
diff --git a/core/res/res/layout/dialog_custom_title_holo.xml b/core/res/res/layout/dialog_custom_title_holo.xml
index f8a2bf7..3994fc8 100644
--- a/core/res/res/layout/dialog_custom_title_holo.xml
+++ b/core/res/res/layout/dialog_custom_title_holo.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -31,7 +31,7 @@ This is a custom layout for a dialog.
<View android:id="@+id/titleDivider"
android:layout_width="match_parent"
android:layout_height="2dip"
- android:background="@android:color/holo_blue_light" />
+ android:background="@color/dialog_divider_color" />
<FrameLayout
android:layout_width="match_parent" android:layout_height="wrap_content"
android:layout_weight="1"
diff --git a/core/res/res/layout/dialog_title_holo.xml b/core/res/res/layout/dialog_title_holo.xml
index 0a692ee..f722a1b 100644
--- a/core/res/res/layout/dialog_title_holo.xml
+++ b/core/res/res/layout/dialog_title_holo.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
-** Copyright 2011, The Android Open Source Project
+** Copyright 2015, 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.
@@ -33,7 +33,7 @@ enabled.
<View android:id="@+id/titleDivider"
android:layout_width="match_parent"
android:layout_height="2dip"
- android:background="@android:color/holo_blue_light" />
+ android:background="@color/dialog_divider_color" />
<FrameLayout
android:layout_width="match_parent" android:layout_height="wrap_content"
android:layout_weight="1"
diff --git a/core/res/res/layout/dialog_title_icons_holo.xml b/core/res/res/layout/dialog_title_icons_holo.xml
index e3d771c..2b26312 100644
--- a/core/res/res/layout/dialog_title_icons_holo.xml
+++ b/core/res/res/layout/dialog_title_icons_holo.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -51,7 +51,7 @@ enabled.
<View android:id="@+id/titleDivider"
android:layout_width="match_parent"
android:layout_height="1dip"
- android:background="@android:color/holo_blue_light" />
+ android:background="@color/dialog_divider_color" />
<FrameLayout
android:layout_width="match_parent" android:layout_height="wrap_content"
diff --git a/core/res/res/layout/keyguard.xml b/core/res/res/layout/keyguard.xml
index f8f482d..7ba6029 100644
--- a/core/res/res/layout/keyguard.xml
+++ b/core/res/res/layout/keyguard.xml
@@ -2,7 +2,7 @@
<!--
/* //device/apps/common/res/layout/keyguard.xml
**
-** Copyright 2007, The Android Open Source Project
+** Copyright 2015, 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.
@@ -26,13 +26,13 @@
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:background="#ff000000">
+ android:background="@color/keyguard_background_color">
<TextView
android:id="@+id/label"
android:textSize="16sp"
android:textStyle="bold"
- android:textColor="#FFFFFFFF"
+ android:textColor="@color/keyguard_label_text_color"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/keyguard_label_text" />
diff --git a/core/res/res/layout/media_controller.xml b/core/res/res/layout/media_controller.xml
index 24c2866..c6507d3 100644
--- a/core/res/res/layout/media_controller.xml
+++ b/core/res/res/layout/media_controller.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2007 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -17,7 +17,7 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:background="#CC000000"
+ android:background="@color/media_controller_background_color"
android:orientation="vertical"
android:layoutDirection="ltr">
diff --git a/core/res/res/layout/notification_material_action_tombstone.xml b/core/res/res/layout/notification_material_action_tombstone.xml
index 976448b..44f15dc 100644
--- a/core/res/res/layout/notification_material_action_tombstone.xml
+++ b/core/res/res/layout/notification_material_action_tombstone.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ Copyright (C) 2014 The Android Open Source Project
+ ~ Copyright (C) 2015 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.
@@ -24,7 +24,7 @@
android:gravity="start|center_vertical"
android:drawablePadding="8dp"
android:paddingStart="8dp"
- android:textColor="#555555"
+ android:textColor="@color/notification_action_tombstone_text_color"
android:textSize="@dimen/notification_text_size"
android:singleLine="true"
android:ellipsize="end"
diff --git a/core/res/res/layout/preference_category_material.xml b/core/res/res/layout/preference_category_material.xml
index 456b252..9f313eb 100644
--- a/core/res/res/layout/preference_category_material.xml
+++ b/core/res/res/layout/preference_category_material.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -21,7 +21,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="16dip"
android:textAppearance="@style/TextAppearance.Material.Body2"
- android:textColor="?android:attr/colorAccent"
+ android:textColor="@color/preference_category_text_color"
android:paddingStart="?attr/listPreferredItemPaddingStart"
android:paddingEnd="?attr/listPreferredItemPaddingEnd"
android:paddingTop="16dip" />
diff --git a/core/res/res/layout/recent_apps_dialog.xml b/core/res/res/layout/recent_apps_dialog.xml
index e3492f6..0e5bf6a 100644
--- a/core/res/res/layout/recent_apps_dialog.xml
+++ b/core/res/res/layout/recent_apps_dialog.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
-** Copyright 2008, The Android Open Source Project
+** Copyright 2015, 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.
@@ -32,7 +32,7 @@
android:layout_height="40dip"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="#80FFFFFF"
+ android:textColor="@color/recent_apps_dialog_text_color"
android:textStyle="bold"
android:singleLine="true"
android:text="@android:string/recent_tasks_title" />
diff --git a/core/res/res/layout/recent_apps_icon.xml b/core/res/res/layout/recent_apps_icon.xml
index f73aec3..74bb723 100644
--- a/core/res/res/layout/recent_apps_icon.xml
+++ b/core/res/res/layout/recent_apps_icon.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
-** Copyright 2008, The Android Open Source Project
+** Copyright 2015, 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.
@@ -27,7 +27,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="3dip"
android:layout_marginBottom="3dip"
- android:textColor="@color/bright_foreground_dark"
+ android:textColor="@color/recent_apps_text_color"
android:paddingTop="5dip"
android:paddingBottom="2dip"
diff --git a/core/res/res/layout/remote_views_adapter_default_loading_view.xml b/core/res/res/layout/remote_views_adapter_default_loading_view.xml
index 864e435..7268e2c 100644
--- a/core/res/res/layout/remote_views_adapter_default_loading_view.xml
+++ b/core/res/res/layout/remote_views_adapter_default_loading_view.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -23,9 +23,9 @@
android:gravity="center_horizontal|center_vertical"
android:text="@string/loading"
- android:textColor="#60FFFFFF"
+ android:textColor="@color/loading_view_text_color"
android:textSize="18sp"
- android:shadowColor="#FF000000"
+ android:shadowColor="@color/loading_view_text_shadow_color"
android:shadowDx="0.0"
android:shadowDy="1.0"
android:shadowRadius="1.0" />
diff --git a/core/res/res/layout/restrictions_pin_setup.xml b/core/res/res/layout/restrictions_pin_setup.xml
index 03ed696..7478baf 100644
--- a/core/res/res/layout/restrictions_pin_setup.xml
+++ b/core/res/res/layout/restrictions_pin_setup.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -70,7 +70,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/restr_pin_error_doesnt_match"
- android:textColor="#FFFF0000" />
+ android:textColor="@color/pin_error_message_text_color" />
</LinearLayout>
diff --git a/core/res/res/layout/simple_dropdown_item_2line.xml b/core/res/res/layout/simple_dropdown_item_2line.xml
index c7093b4..04f22fa 100644
--- a/core/res/res/layout/simple_dropdown_item_2line.xml
+++ b/core/res/res/layout/simple_dropdown_item_2line.xml
@@ -2,7 +2,7 @@
<!--
/* //device/apps/common/assets/res/any/layout/simple_spinner_item.xml
**
-** Copyright 2008, The Android Open Source Project
+** Copyright 2015, 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.
@@ -46,7 +46,7 @@
android:id="@android:id/text2"
style="?android:attr/dropDownItemStyle"
android:textAppearance="?android:attr/textAppearanceSmallPopupMenu"
- android:textColor="#323232"
+ android:textColor="@color/dropdown_item_2line_text_color"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
diff --git a/core/res/res/layout/status_bar_latest_event_content.xml b/core/res/res/layout/status_bar_latest_event_content.xml
index 9444164..d68bc68 100644
--- a/core/res/res/layout/status_bar_latest_event_content.xml
+++ b/core/res/res/layout/status_bar_latest_event_content.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -20,7 +20,7 @@
android:id="@+id/status_bar_latest_event_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:background="#FFFF00FF"
+ android:background="@color/status_bar_latest_event_content_bg_color"
>
<include layout="@layout/notification_template_material_base"
android:layout_width="match_parent"
diff --git a/core/res/res/layout/subscription_item_layout.xml b/core/res/res/layout/subscription_item_layout.xml
index aa835f4..cca0d98 100755
--- a/core/res/res/layout/subscription_item_layout.xml
+++ b/core/res/res/layout/subscription_item_layout.xml
@@ -2,7 +2,7 @@
<!--
/*
**
-** Copyright (C) 2014 MediaTek Inc.
+** Copyright (C) 2015 MediaTek Inc.
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
@@ -40,7 +40,7 @@
android:layout_alignParentBottom="true"
android:textSize="12sp"
android:singleLine="true"
- android:textColor="@android:color/white"
+ android:textColor="@color/subscription_item_short_number_color"
android:includeFontPadding="false"/>
</RelativeLayout>
<RelativeLayout
@@ -66,4 +66,4 @@
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondary"/>
</RelativeLayout>
-</LinearLayout> \ No newline at end of file
+</LinearLayout>
diff --git a/core/res/res/layout/text_edit_action_popup_text.xml b/core/res/res/layout/text_edit_action_popup_text.xml
index 16bf30e..1f288f1 100644
--- a/core/res/res/layout/text_edit_action_popup_text.xml
+++ b/core/res/res/layout/text_edit_action_popup_text.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -23,7 +23,7 @@
android:paddingBottom="8dip"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceSmallInverse"
- android:textColor="@android:color/black"
+ android:textColor="@color/edit_action_popup_text_color"
android:textAllCaps="true"
android:textStyle="bold"
/>
diff --git a/core/res/res/layout/text_edit_paste_window.xml b/core/res/res/layout/text_edit_paste_window.xml
index 3b8dbf2..7b0c5f3 100644
--- a/core/res/res/layout/text_edit_paste_window.xml
+++ b/core/res/res/layout/text_edit_paste_window.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -28,7 +28,7 @@
android:drawablePadding="8dip"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMediumInverse"
- android:textColor="@android:color/black"
+ android:textColor="@color/edit_paste_window_text_color"
android:background="@android:drawable/text_edit_paste_window"
android:text="@android:string/paste"
android:layout_marginBottom="12dip"
diff --git a/core/res/res/layout/text_edit_side_paste_window.xml b/core/res/res/layout/text_edit_side_paste_window.xml
index c947a19..67e9dd6 100644
--- a/core/res/res/layout/text_edit_side_paste_window.xml
+++ b/core/res/res/layout/text_edit_side_paste_window.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -28,7 +28,7 @@
android:drawablePadding="8dip"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMediumInverse"
- android:textColor="@android:color/black"
+ android:textColor="@color/edit_side_paste_window_text_oolor"
android:background="@android:drawable/text_edit_side_paste_window"
android:text="@android:string/paste"
android:layout_marginBottom="12dip"
diff --git a/core/res/res/layout/typing_filter.xml b/core/res/res/layout/typing_filter.xml
index d8d0a40..af0d6e6 100644
--- a/core/res/res/layout/typing_filter.xml
+++ b/core/res/res/layout/typing_filter.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2006 The Android Open Source Project
+<!-- Copyright (C) 2015 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.
@@ -16,8 +16,8 @@
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
android:textSize="36dp"
- android:textColor="#99FFFFFF"
- android:background="#BB000000"
+ android:textColor="@color/typing_filter_text_color"
+ android:background="@color/typing_filter_background_color"
android:minWidth="240dip"
android:maxWidth="240dip"
android:padding="10dip"
diff --git a/core/res/res/layout/web_text_view_dropdown.xml b/core/res/res/layout/web_text_view_dropdown.xml
index 1a6e9eb..e802794 100644
--- a/core/res/res/layout/web_text_view_dropdown.xml
+++ b/core/res/res/layout/web_text_view_dropdown.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
-Copyright 2010, The Android Open Source Project
+Copyright 2015, 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.
@@ -19,8 +19,8 @@ limitations under the License.
android:id="@android:id/text1"
style="?android:attr/dropDownItemStyle"
android:textAppearance="?android:attr/textAppearanceSearchResultTitle"
- android:textColor="#ff000000"
- android:background="#ffffffff"
+ android:textColor="@color/web_view_dropdown_text_color"
+ android:background="@color/web_view_dropdown_background_color"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"