Do not annouce Collapse/Expand if there are less or equal to 2 permissions in the list

Test: CTS
Fix: 278638141
Change-Id: Ia22ccb8972ddd980fbd15bc4aaa4709d611a94b2
This commit is contained in:
Evan Chen
2023-05-01 22:17:57 +00:00
parent d7fd5e789a
commit 0ad17875b7

View File

@@ -123,12 +123,11 @@ class PermissionListAdapter extends RecyclerView.Adapter<PermissionListAdapter.V
viewHolder.mExpandButton.setTag(R.drawable.btn_expand_more);
}
setAccessibility(view, viewType,
AccessibilityNodeInfo.ACTION_CLICK, R.string.permission_expand, 0);
// Add expand buttons if the permissions are more than PERMISSION_SIZE in this list also
// make the summary invisible by default.
if (mPermissions.size() > PERMISSION_SIZE) {
setAccessibility(view, viewType,
AccessibilityNodeInfo.ACTION_CLICK, R.string.permission_expand, 0);
viewHolder.mPermissionSummary.setVisibility(View.GONE);