diff options
-rw-r--r-- | res/layout/recents_list_footer.xml | 6 | ||||
-rw-r--r-- | res/values/colors.xml | 3 | ||||
-rw-r--r-- | res/values/strings.xml | 4 |
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> |