diff --git a/app/src/main/res/layout/activity_medium.xml b/app/src/main/res/layout/activity_medium.xml index 8de070d68..4d88429f9 100644 --- a/app/src/main/res/layout/activity_medium.xml +++ b/app/src/main/res/layout/activity_medium.xml @@ -18,6 +18,7 @@ android:id="@+id/top_shadow" android:layout_width="match_parent" android:layout_height="@dimen/default_status_action_height" + android:contentDescription="@null" android:background="@drawable/gradient_background_flipped"/> diff --git a/app/src/main/res/layout/activity_panorama_photo.xml b/app/src/main/res/layout/activity_panorama_photo.xml index 0a4cd3f99..7b589f5d3 100644 --- a/app/src/main/res/layout/activity_panorama_photo.xml +++ b/app/src/main/res/layout/activity_panorama_photo.xml @@ -17,7 +17,8 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" - android:background="@drawable/gradient_background"/> + android:background="@drawable/gradient_background" + android:contentDescription="@null"/> + android:background="@drawable/gradient_background_flipped" + android:contentDescription="@null"/> @@ -36,6 +37,7 @@ android:layout_height="@dimen/bottom_editor_color_picker_size" android:layout_marginEnd="@dimen/small_margin" android:clickable="false" + android:contentDescription="@null" android:padding="@dimen/small_margin" android:src="@drawable/circle_background" app:layout_constraintBottom_toBottomOf="parent" @@ -49,6 +51,7 @@ android:layout_marginEnd="@dimen/normal_margin" android:background="?attr/selectableItemBackgroundBorderless" android:clickable="false" + android:contentDescription="@string/undo" android:padding="@dimen/medium_margin" android:src="@drawable/ic_undo" app:layout_constraintBottom_toBottomOf="parent" diff --git a/app/src/main/res/layout/bottom_editor_primary_actions.xml b/app/src/main/res/layout/bottom_editor_primary_actions.xml index 20d8035fd..fd7210674 100644 --- a/app/src/main/res/layout/bottom_editor_primary_actions.xml +++ b/app/src/main/res/layout/bottom_editor_primary_actions.xml @@ -12,6 +12,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="?attr/selectableItemBackgroundBorderless" + android:contentDescription="@string/filter" android:padding="@dimen/normal_margin" android:src="@drawable/ic_photo_filter" app:layout_constraintBottom_toBottomOf="parent" diff --git a/app/src/main/res/layout/bottom_set_wallpaper_actions.xml b/app/src/main/res/layout/bottom_set_wallpaper_actions.xml index 707c72ca7..ddef09436 100644 --- a/app/src/main/res/layout/bottom_set_wallpaper_actions.xml +++ b/app/src/main/res/layout/bottom_set_wallpaper_actions.xml @@ -26,6 +26,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="?attr/selectableItemBackgroundBorderless" + android:contentDescription="@string/rotate" android:padding="@dimen/normal_margin" android:src="@drawable/ic_rotate_right" app:layout_constraintBottom_toBottomOf="parent" diff --git a/app/src/main/res/layout/directory_item_grid.xml b/app/src/main/res/layout/directory_item_grid.xml index 75c2c8ba1..5a24ac9e9 100644 --- a/app/src/main/res/layout/directory_item_grid.xml +++ b/app/src/main/res/layout/directory_item_grid.xml @@ -23,6 +23,7 @@ android:layout_alignBottom="@+id/dir_thumbnail" android:layout_centerInParent="true" android:background="@color/default_background_color" + android:contentDescription="@string/lock_folder" android:padding="@dimen/lock_padding" android:src="@drawable/ic_lock_huge" android:visibility="gone"/> @@ -36,6 +37,7 @@ android:layout_alignParentEnd="true" android:layout_margin="@dimen/small_margin" android:background="@drawable/circle_background" + android:contentDescription="@null" android:padding="@dimen/tiny_margin" android:src="@drawable/ic_check" android:visibility="gone"/> @@ -48,6 +50,7 @@ android:layout_alignParentTop="true" android:layout_margin="@dimen/small_margin" android:background="@drawable/circle_black_background" + android:contentDescription="@string/pin" android:padding="@dimen/small_margin" android:src="@drawable/ic_pin" android:visibility="gone"/> @@ -59,7 +62,8 @@ android:layout_alignStart="@+id/dir_bottom_holder" android:layout_alignEnd="@+id/dir_bottom_holder" android:layout_alignParentBottom="true" - android:background="@drawable/gradient_background"/> + android:background="@drawable/gradient_background" + android:contentDescription="@null"/> @@ -36,6 +37,7 @@ android:layout_alignParentEnd="true" android:layout_margin="@dimen/small_margin" android:background="@drawable/circle_background" + android:contentDescription="@null" android:padding="@dimen/tiny_margin" android:src="@drawable/ic_check" android:visibility="gone"/> @@ -91,6 +93,7 @@ android:id="@+id/dir_location" android:layout_width="@dimen/sd_card_icon_size" android:layout_height="@dimen/sd_card_icon_size" + android:contentDescription="@null" android:paddingBottom="@dimen/small_margin" android:src="@drawable/ic_sd_card" android:visibility="gone"/> @@ -99,6 +102,7 @@ android:id="@+id/dir_pin" android:layout_width="@dimen/sd_card_icon_size" android:layout_height="@dimen/sd_card_icon_size" + android:contentDescription="@string/pin" android:paddingBottom="@dimen/small_margin" android:src="@drawable/ic_pin" android:visibility="gone"/> diff --git a/app/src/main/res/layout/editor_filter_item.xml b/app/src/main/res/layout/editor_filter_item.xml index 31f6bb51d..dd3913336 100644 --- a/app/src/main/res/layout/editor_filter_item.xml +++ b/app/src/main/res/layout/editor_filter_item.xml @@ -12,6 +12,7 @@ android:layout_height="@dimen/bottom_filters_thumbnail_size" android:layout_above="@+id/editor_filter_item_label" android:background="@drawable/stroke_background" + android:contentDescription="@null" android:padding="1dp"/> diff --git a/app/src/main/res/layout/pager_photo_item.xml b/app/src/main/res/layout/pager_photo_item.xml index 2336176cb..0ed59f42b 100644 --- a/app/src/main/res/layout/pager_photo_item.xml +++ b/app/src/main/res/layout/pager_photo_item.xml @@ -38,6 +38,7 @@ android:layout_height="@dimen/play_outline_size_big" android:layout_centerInParent="true" android:padding="20dp" + android:contentDescription="@null" android:src="@drawable/ic_panorama_outline" android:visibility="gone"/> diff --git a/app/src/main/res/layout/photo_video_item_grid.xml b/app/src/main/res/layout/photo_video_item_grid.xml index abeeb8618..b873ffe5e 100644 --- a/app/src/main/res/layout/photo_video_item_grid.xml +++ b/app/src/main/res/layout/photo_video_item_grid.xml @@ -51,6 +51,7 @@ android:layout_alignParentEnd="true" android:layout_margin="@dimen/small_margin" android:background="@drawable/circle_background" + android:contentDescription="@null" android:padding="@dimen/tiny_margin" android:src="@drawable/ic_check" android:visibility="gone"/> diff --git a/app/src/main/res/layout/photo_video_item_list.xml b/app/src/main/res/layout/photo_video_item_list.xml index 3acf413c3..24ae7dd88 100644 --- a/app/src/main/res/layout/photo_video_item_list.xml +++ b/app/src/main/res/layout/photo_video_item_list.xml @@ -21,6 +21,7 @@ android:layout_height="@dimen/selection_check_size" android:layout_alignParentTop="true" android:layout_alignParentEnd="true" + android:contentDescription="@null" android:layout_margin="@dimen/small_margin" android:background="@drawable/circle_background" android:padding="@dimen/tiny_margin"