diff options
author | 2023-12-08 06:14:02 +0000 | |
---|---|---|
committer | 2024-02-06 09:44:02 +0000 | |
commit | 77ee1ed2b79638391c7b5f908cb6cef8ecf6c898 (patch) | |
tree | c405fa460aa67c8589f847261f359ac0997e2a88 /res/layout | |
parent | 27ff8cf14381009c0e043ceca77d7edc5d46d976 (diff) |
Generalising apis in `dirlist` directory using UserManagerState.
The changes include showing generalised cross profile permission
exception error titles and messages, handling quiet mode for the
private profile (in general for all profiles with hide on pause) and
generalised accessibility content description strings.
Bug: 309382744
Test: atest unit tests and manual testing
Change-Id: I61a74959c6b89d976aa6bb50a71f93952f733462
Merged-In: I61a74959c6b89d976aa6bb50a71f93952f733462
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/item_dir_grid.xml | 2 | ||||
-rw-r--r-- | res/layout/item_doc_grid.xml | 4 | ||||
-rw-r--r-- | res/layout/item_doc_list.xml | 2 | ||||
-rw-r--r-- | res/layout/item_photo_grid.xml | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/res/layout/item_dir_grid.xml b/res/layout/item_dir_grid.xml index 8720c37cf..423aba0c1 100644 --- a/res/layout/item_dir_grid.xml +++ b/res/layout/item_dir_grid.xml @@ -81,7 +81,7 @@ </FrameLayout> <ImageView - android:id="@+id/icon_briefcase" + android:id="@+id/icon_profile_badge" android:layout_height="@dimen/briefcase_icon_size" android:layout_width="@dimen/briefcase_icon_size" android:layout_marginEnd="@dimen/briefcase_icon_margin" diff --git a/res/layout/item_doc_grid.xml b/res/layout/item_doc_grid.xml index 5e2e93842..d0b0ee305 100644 --- a/res/layout/item_doc_grid.xml +++ b/res/layout/item_doc_grid.xml @@ -146,7 +146,7 @@ android:paddingEnd="12dp"> <ImageView - android:id="@+id/icon_briefcase" + android:id="@+id/icon_profile_badge" android:layout_height="@dimen/briefcase_icon_size" android:layout_width="@dimen/briefcase_icon_size" android:layout_marginEnd="@dimen/briefcase_icon_margin" @@ -161,7 +161,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" - android:layout_toEndOf="@+id/icon_briefcase" + android:layout_toEndOf="@+id/icon_profile_badge" android:singleLine="true" android:ellipsize="end" android:textAlignment="viewStart" diff --git a/res/layout/item_doc_list.xml b/res/layout/item_doc_list.xml index 0942c4b5f..026c6efe6 100644 --- a/res/layout/item_doc_list.xml +++ b/res/layout/item_doc_list.xml @@ -92,7 +92,7 @@ android:layout_weight="1"> <ImageView - android:id="@+id/icon_briefcase" + android:id="@+id/icon_profile_badge" android:layout_height="@dimen/briefcase_icon_size" android:layout_width="@dimen/briefcase_icon_size" android:layout_marginEnd="@dimen/briefcase_icon_margin" diff --git a/res/layout/item_photo_grid.xml b/res/layout/item_photo_grid.xml index 5cf685004..cb2c40c25 100644 --- a/res/layout/item_photo_grid.xml +++ b/res/layout/item_photo_grid.xml @@ -104,7 +104,7 @@ </FrameLayout> <FrameLayout - android:id="@+id/icon_briefcase" + android:id="@+id/icon_profile_badge" android:layout_width="@dimen/button_touch_size" android:layout_height="@dimen/button_touch_size" android:layout_alignParentBottom="true" |