Searched refs:usedGroups (Results 1 – 1 of 1) sorted by relevance
166 ArrayMap<String, CharSequence> usedGroups = new ArrayMap<>(); in updateDialogView() local169 usedGroups.put(accessedPermGroupName, KotlinUtils.INSTANCE.getPermGroupLabel( in updateDialogView()208 usedGroups.put(CAMERA, KotlinUtils.INSTANCE.getPermGroupLabel(context, CAMERA)); in updateDialogView()212 usedGroups.put(MICROPHONE, KotlinUtils.INSTANCE.getPermGroupLabel(context, in updateDialogView()273 ((TextView) contentView.requireViewById(R.id.title)).setText(getTitle(usedGroups)); in updateDialogView()278 private CharSequence getTitle(ArrayMap<String, CharSequence> usedGroups) { in getTitle() argument279 if (usedGroups.size() == 1 && usedGroups.keyAt(0).equals(MICROPHONE)) { in getTitle()281 } else if (usedGroups.size() == 1 && usedGroups.keyAt(0).equals(CAMERA)) { in getTitle()283 } else if (usedGroups.size() == 2 && usedGroups.containsKey(MICROPHONE) in getTitle()284 && usedGroups.containsKey(CAMERA)) { in getTitle()[all …]