summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantos Cordon <santoscordon@google.com>2014-05-22 02:54:05 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-05-22 02:54:06 +0000
commit4aecf0f557a805bb3f2715cade0ab15f6b99ad39 (patch)
tree015392244587f9c7be6f3e67b81a63e393bd4d9c
parentc04d59848a84f6e2f1288cbed67585adef2a9c4f (diff)
parentc3206cd5aed6f44f3d15a5692e78d3e5543c512c (diff)
Merge "Changed color/font of view all contacts text. Removed whitespace. Added font family string to values and bolded text. Added do not translate to font string. Bug: 13936108"
-rw-r--r--res/layout/recents_list_footer.xml6
-rw-r--r--res/values/colors.xml3
-rw-r--r--res/values/strings.xml4
3 files changed, 11 insertions, 2 deletions
diff --git a/res/layout/recents_list_footer.xml b/res/layout/recents_list_footer.xml
index 48c0f3614..6156456d5 100644
--- a/res/layout/recents_list_footer.xml
+++ b/res/layout/recents_list_footer.xml
@@ -25,7 +25,9 @@
android:paddingTop="20dp"
android:paddingBottom="20dp"
android:gravity="center"
- android:textColor="@color/dialtacts_primary_text_color"
+ android:fontFamily="@string/view_full_call_history_font_family"
+ android:textStyle="bold"
+ android:textColor="@color/view_full_call_history_color"
android:textSize="14sp"
android:text="@string/recents_footer_text"
- android:background="?android:attr/selectableItemBackground" /> \ No newline at end of file
+ android:background="?android:attr/selectableItemBackground" />
diff --git a/res/values/colors.xml b/res/values/colors.xml
index 2d3fd1777..5b708b66c 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -83,6 +83,9 @@
as call back, play voicemail, etc. -->
<color name="call_log_action_text">#1dc7db</color>
+ <!-- Color of view full call history item text. -->
+ <color name="view_full_call_history_color">#1dc7db</color>
+
<!-- Color for missed call icons. -->
<color name="missed_call">#ff2e58</color>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 26ff1a70c..0cf4e2532 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -545,6 +545,10 @@
Do not translate. -->
<string name="call_log_activity_title_font_family">sans-serif-light</string>
+ <!-- String resource for the font-family to use for the full call history footer
+ Do not translate. -->
+ <string name="view_full_call_history_font_family">sans-serif</string>
+
<!-- Text displayed when the list of missed calls is empty -->
<string name="recentMissed_empty">No recent missed calls.</string>