diff options
author | 2024-02-14 10:05:54 +0000 | |
---|---|---|
committer | 2024-02-14 10:37:52 +0000 | |
commit | c62da974b9534f29e153736e63a8ee3b3982bb9d (patch) | |
tree | d57b2fff0f79a43b60f81d8a1611f68ce0b38fc4 | |
parent | 0125928cf84a65b9b9d86f343e5a1d39885c49ac (diff) |
Fixing profile badge themes for various grid and list holders.
Applied a 'colorAccent' tint to the ImageView in XML layout of the
respective holders to modify the appearance of the attached profile
badge drawables.
Bug: 324836488
Bug: 325008995
Test: Screenshot- screen/BBNyTueSg7Frx5U
Change-Id: I6f1396cab03df9d355b73d58cced57b689c22a48
-rw-r--r-- | res/layout-sw720dp/item_doc_list.xml | 1 | ||||
-rw-r--r-- | res/layout/item_dir_grid.xml | 1 | ||||
-rw-r--r-- | res/layout/item_doc_grid.xml | 1 | ||||
-rw-r--r-- | res/layout/item_doc_list.xml | 1 | ||||
-rw-r--r-- | res/layout/item_photo_grid.xml | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/res/layout-sw720dp/item_doc_list.xml b/res/layout-sw720dp/item_doc_list.xml index 4b2b3715a..3013f3173 100644 --- a/res/layout-sw720dp/item_doc_list.xml +++ b/res/layout-sw720dp/item_doc_list.xml @@ -101,6 +101,7 @@ android:layout_marginEnd="@dimen/briefcase_icon_margin" android:layout_gravity="center_vertical" android:src="@drawable/ic_briefcase" + android:tint="?android:attr/colorAccent" android:contentDescription="@string/a11y_work"/> <TextView diff --git a/res/layout/item_dir_grid.xml b/res/layout/item_dir_grid.xml index 423aba0c1..bd690d4d3 100644 --- a/res/layout/item_dir_grid.xml +++ b/res/layout/item_dir_grid.xml @@ -86,6 +86,7 @@ android:layout_width="@dimen/briefcase_icon_size" android:layout_marginEnd="@dimen/briefcase_icon_margin" android:src="@drawable/ic_briefcase" + android:tint="?android:attr/colorAccent" android:contentDescription="@string/a11y_work"/> <TextView diff --git a/res/layout/item_doc_grid.xml b/res/layout/item_doc_grid.xml index d0b0ee305..d654571eb 100644 --- a/res/layout/item_doc_grid.xml +++ b/res/layout/item_doc_grid.xml @@ -154,6 +154,7 @@ android:layout_alignBottom="@android:id/title" android:gravity="center_vertical" android:src="@drawable/ic_briefcase" + android:tint="?android:attr/colorAccent" android:contentDescription="@string/a11y_work"/> <TextView diff --git a/res/layout/item_doc_list.xml b/res/layout/item_doc_list.xml index 026c6efe6..77494a29c 100644 --- a/res/layout/item_doc_list.xml +++ b/res/layout/item_doc_list.xml @@ -98,6 +98,7 @@ android:layout_marginEnd="@dimen/briefcase_icon_margin" android:layout_gravity="center_vertical" android:src="@drawable/ic_briefcase" + android:tint="?android:attr/colorAccent" android:contentDescription="@string/a11y_work" /> <TextView diff --git a/res/layout/item_photo_grid.xml b/res/layout/item_photo_grid.xml index cb2c40c25..4581d3d25 100644 --- a/res/layout/item_photo_grid.xml +++ b/res/layout/item_photo_grid.xml @@ -116,6 +116,7 @@ android:layout_height="@dimen/briefcase_icon_size_photo" android:layout_width="@dimen/briefcase_icon_size_photo" android:src="@drawable/ic_briefcase_white" + android:tint="?android:attr/colorAccent" android:padding="5dp" android:background="@drawable/circle_button_background" android:layout_gravity="center" |