diff options
author | Wenyi Wang <wenyiw@google.com> | 2016-06-12 15:57:47 -0700 |
---|---|---|
committer | Wenyi Wang <wenyiw@google.com> | 2016-06-12 15:57:47 -0700 |
commit | 937fb6db9b11de08bbce7f4aa85ff8f253fe12b2 (patch) | |
tree | 71603ce0e4d448ad7b60216c6717b21814860fd5 | |
parent | 242b3a3c46022efc9f15b2b3976916da2f6b9cbd (diff) | |
download | packages_apps_Contacts-937fb6db9b11de08bbce7f4aa85ff8f253fe12b2.tar.gz packages_apps_Contacts-937fb6db9b11de08bbce7f4aa85ff8f253fe12b2.tar.bz2 packages_apps_Contacts-937fb6db9b11de08bbce7f4aa85ff8f253fe12b2.zip |
Make toolbar title larger in landscape
By default, title font size is 20dp in portrait and 14dp in landscape:
https://cs.corp.google.com/search/?q=%5C%22abc_text_size_title_material_toolbar%5C%22%5C%3E&m=100&sq=package:android&type=cs
We make it 20dp in both landscape and portrait.
Bug 28625914
Change-Id: I6c609f9ccb6009db4f0ae96bf91aede8597c4ad7
-rw-r--r-- | res/values/styles.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml index 880460be9..fd6f56d0a 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -233,6 +233,7 @@ </style> <style name="ContactsActionBarTitleTextAppCompat" parent="TextAppearance.Widget.AppCompat.Toolbar.Title"> + <item name="android:textSize">20dp</item> <item name="android:textColor">@color/actionbar_text_color</item> </style> |