diff options
author | 2020-04-10 18:58:51 -0700 | |
---|---|---|
committer | 2020-04-13 11:55:42 -0700 | |
commit | 65646dddb9122bc56f7de17c0272848bdb3db756 (patch) | |
tree | 50a0b61e0f1282422440be13d12a42b527c1e3ea /res/layout | |
parent | b646cf76a276430247cab5a1e476c4d333f7775c (diff) |
Fix text contrast of document list item caption.
Bug: 141218525
Test: manual
Change-Id: Ifdfef709aa50b47d95751dfd6a67025dc63b4cdd
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/item_doc_list.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/res/layout/item_doc_list.xml b/res/layout/item_doc_list.xml index 706d9c226..1189482a2 100644 --- a/res/layout/item_doc_list.xml +++ b/res/layout/item_doc_list.xml @@ -117,7 +117,7 @@ android:ellipsize="end" android:singleLine="true" android:textAlignment="viewStart" - android:textAppearance="@android:style/TextAppearance.Material.Caption"/> + android:textAppearance="@style/ItemDocListCaptionText"/> <TextView android:id="@+id/size" @@ -128,7 +128,7 @@ android:ellipsize="end" android:singleLine="true" android:textAlignment="viewStart" - android:textAppearance="@android:style/TextAppearance.Material.Caption"/> + android:textAppearance="@style/ItemDocListCaptionText"/> <TextView android:id="@+id/file_type" @@ -139,7 +139,7 @@ android:ellipsize="end" android:singleLine="true" android:textAlignment="viewStart" - android:textAppearance="@android:style/TextAppearance.Material.Caption"/> + android:textAppearance="@style/ItemDocListCaptionText"/> </LinearLayout> </LinearLayout> |