Merge "Do not annouce Collapse/Expand if there are less or equal to 2 permissions in the list" into udc-dev

This commit is contained in:
Evan Chen
2023-05-02 21:16:03 +00:00
committed by Android (Google) Code Review

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);