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/activity_search.xml | |
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/activity_search.xml')
-rw-r--r-- | app/src/main/res/layout/activity_search.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/src/main/res/layout/activity_search.xml b/app/src/main/res/layout/activity_search.xml index 3d4d4738..62adf999 100644 --- a/app/src/main/res/layout/activity_search.xml +++ b/app/src/main/res/layout/activity_search.xml @@ -46,7 +46,8 @@ android:src="@drawable/ic_cancel_24dp" android:clickable="true" android:focusable="true" - android:background="?attr/actionBarItemBackground" /> + android:background="?attr/actionBarItemBackground" + android:contentDescription="@string/content_description_delete_texts" /> <ImageView android:id="@+id/link_handler_image_view_search_activity" @@ -56,7 +57,8 @@ android:src="@drawable/ic_open_link_24dp" android:clickable="true" android:focusable="true" - android:background="?attr/actionBarItemBackground" /> + android:background="?attr/actionBarItemBackground" + android:contentDescription="@string/content_description_handle_link" /> </LinearLayout> |