Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9462c0b8 authored by Matt Pietal's avatar Matt Pietal
Browse files

Sharesheet - a11y fix for az label

The row containing 'Apps list' should not be enabled in the listview
in order to not appear clickable to TalkBack.

Bug: 132861329
Test: Manual
Change-Id: Ie7ba64f289def9839e013f05df3070d0e4a43a90
parent 8c10c286
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2655,7 +2655,7 @@ public class ChooserActivity extends ResolverActivity {
        @Override
        public boolean isEnabled(int position) {
            int viewType = getItemViewType(position);
            if (viewType == VIEW_TYPE_CONTENT_PREVIEW) {
            if (viewType == VIEW_TYPE_CONTENT_PREVIEW || viewType == VIEW_TYPE_AZ_LABEL) {
                return false;
            }
            return true;