Home
last modified time | relevance | path

Searched refs:groupNameView (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DPartialConversationInfo.java229 TextView groupNameView = findViewById(R.id.group_name);
231 groupNameView.setText(groupName);
232 groupNameView.setVisibility(VISIBLE);
234 groupNameView.setVisibility(GONE);
H A DNotificationConversationInfo.java387 TextView groupNameView = findViewById(R.id.group_name); in bindGroup() local
389 groupNameView.setText(groupName); in bindGroup()
390 groupNameView.setVisibility(VISIBLE); in bindGroup()
392 groupNameView.setVisibility(GONE); in bindGroup()
H A DNotificationInfo.java410 TextView groupNameView = findViewById(R.id.group_name);
412 groupNameView.setText(groupName);
413 groupNameView.setVisibility(VISIBLE);
415 groupNameView.setVisibility(GONE);
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationInfoTest.java292 final TextView groupNameView = mNotificationInfo.findViewById(R.id.group_name); in testBindNotification_GroupNameHiddenIfNoGroup() local
293 assertEquals(GONE, groupNameView.getVisibility()); in testBindNotification_GroupNameHiddenIfNoGroup()
320 final TextView groupNameView = mNotificationInfo.findViewById(R.id.group_name); in testBindNotification_SetsGroupNameIfNonNull() local
321 assertEquals(View.VISIBLE, groupNameView.getVisibility()); in testBindNotification_SetsGroupNameIfNonNull()
322 assertEquals("Test Group Name", groupNameView.getText()); in testBindNotification_SetsGroupNameIfNonNull()