diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-09-05 03:47:04 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-09-05 03:47:04 +0000 |
commit | 2d0675202f402bfde2ddd5f8572d1bfd5d76f91f (patch) | |
tree | b8e2f048e973b6f5c08f2160da80c2c5cd224523 /app/src/main/res/layout-sw600dp | |
parent | ca42beeb17cfd1dbc99535809001b0316b79dd62 (diff) | |
download | infinity-for-reddit-2d0675202f402bfde2ddd5f8572d1bfd5d76f91f.tar infinity-for-reddit-2d0675202f402bfde2ddd5f8572d1bfd5d76f91f.tar.gz infinity-for-reddit-2d0675202f402bfde2ddd5f8572d1bfd5d76f91f.tar.bz2 infinity-for-reddit-2d0675202f402bfde2ddd5f8572d1bfd5d76f91f.tar.lz infinity-for-reddit-2d0675202f402bfde2ddd5f8572d1bfd5d76f91f.tar.xz infinity-for-reddit-2d0675202f402bfde2ddd5f8572d1bfd5d76f91f.tar.zst infinity-for-reddit-2d0675202f402bfde2ddd5f8572d1bfd5d76f91f.zip |
Start adding contentDescription for image views.
Diffstat (limited to 'app/src/main/res/layout-sw600dp')
-rw-r--r-- | app/src/main/res/layout-sw600dp/activity_customize_comment_filter.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/layout-sw600dp/activity_customize_post_filter.xml | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app/src/main/res/layout-sw600dp/activity_customize_comment_filter.xml b/app/src/main/res/layout-sw600dp/activity_customize_comment_filter.xml index b80b28e9..70adf41f 100644 --- a/app/src/main/res/layout-sw600dp/activity_customize_comment_filter.xml +++ b/app/src/main/res/layout-sw600dp/activity_customize_comment_filter.xml @@ -286,7 +286,8 @@ android:padding="16dp" android:background="?actionBarItemBackground" android:clickable="true" - android:focusable="true" /> + android:focusable="true" + android:contentDescription="@string/content_description_comment_filter_add_user" /> </LinearLayout> diff --git a/app/src/main/res/layout-sw600dp/activity_customize_post_filter.xml b/app/src/main/res/layout-sw600dp/activity_customize_post_filter.xml index 32197519..571d72b9 100644 --- a/app/src/main/res/layout-sw600dp/activity_customize_post_filter.xml +++ b/app/src/main/res/layout-sw600dp/activity_customize_post_filter.xml @@ -661,7 +661,8 @@ android:padding="16dp" android:background="?actionBarItemBackground" android:clickable="true" - android:focusable="true" /> + android:focusable="true" + android:contentDescription="@string/content_description_post_filter_add_subreddit" /> </LinearLayout> @@ -711,7 +712,8 @@ android:padding="16dp" android:background="?actionBarItemBackground" android:clickable="true" - android:focusable="true" /> + android:focusable="true" + android:contentDescription="@string/content_description_post_filter_add_user" /> </LinearLayout> |