Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DPartialConversationInfo.java209 TextView groupNameView = findViewById(R.id.group_name);
211 groupNameView.setText(groupName);
212 groupNameView.setVisibility(VISIBLE);
214 groupNameView.setVisibility(GONE);
H A DNotificationConversationInfo.java396 TextView groupNameView = findViewById(R.id.group_name); in bindGroup() local
398 groupNameView.setText(groupName); in bindGroup()
399 groupNameView.setVisibility(VISIBLE); in bindGroup()
401 groupNameView.setVisibility(GONE); in bindGroup()
H A DNotificationInfo.java425 TextView groupNameView = findViewById(R.id.group_name);
427 groupNameView.setText(groupName);
428 groupNameView.setVisibility(VISIBLE);
430 groupNameView.setVisibility(GONE);
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationInfoTest.java304 final TextView groupNameView = mNotificationInfo.findViewById(R.id.group_name); in testBindNotification_GroupNameHiddenIfNoGroup() local
305 assertEquals(GONE, groupNameView.getVisibility()); in testBindNotification_GroupNameHiddenIfNoGroup()
333 final TextView groupNameView = mNotificationInfo.findViewById(R.id.group_name); in testBindNotification_SetsGroupNameIfNonNull() local
334 assertEquals(View.VISIBLE, groupNameView.getVisibility()); in testBindNotification_SetsGroupNameIfNonNull()
335 assertEquals("Test Group Name", groupNameView.getText()); in testBindNotification_SetsGroupNameIfNonNull()