Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/
H A DNotificationSectionHeadersModule.kt45 .headerText(R.string.notification_section_header_incoming)
56 .headerText(R.string.notification_section_header_alerting)
67 .headerText(R.string.notification_section_header_conversations)
78 .headerText(R.string.notification_section_header_gentle)
142 @BindsInstance fun headerText(@HeaderText @StringRes headerText: Int): Builder
/aosp14/frameworks/base/core/java/android/view/
H A DNotificationHeaderView.java187 View headerText = findViewById(R.id.header_text); in styleTextAsTitle() local
188 if (headerText instanceof TextView) { in styleTextAsTitle()
189 ((TextView) headerText).setTextAppearance(styleResId); in styleTextAsTitle()
/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/app/
H A DResolverActivityTest.java592 TextView headerText = activity.findViewById(R.id.title); in testWorkTab_headerIsVisibleInPersonalTab() local
593 String initialText = headerText.getText().toString(); in testWorkTab_headerIsVisibleInPersonalTab()
595 assertThat(headerText.getVisibility(), is(View.VISIBLE)); in testWorkTab_headerIsVisibleInPersonalTab()
612 TextView headerText = activity.findViewById(R.id.title); in testWorkTab_switchTabs_headerStaysSame() local
613 String initialText = headerText.getText().toString(); in testWorkTab_switchTabs_headerStaysSame()
618 String currentText = headerText.getText().toString(); in testWorkTab_switchTabs_headerStaysSame()
619 assertThat(headerText.getVisibility(), is(View.VISIBLE)); in testWorkTab_switchTabs_headerStaysSame()
/aosp14/frameworks/base/core/java/android/app/
H A DNotification.java5603 CharSequence headerText = p.mSubText; in bindHeaderText() local
5604 if (headerText == null && mStyle != null && mStyle.mSummaryTextSet in bindHeaderText()
5606 headerText = mStyle.mSummaryText; in bindHeaderText()
5608 if (headerText == null in bindHeaderText()
5611 headerText = mN.extras.getCharSequence(EXTRA_INFO_TEXT); in bindHeaderText()
5613 if (!TextUtils.isEmpty(headerText)) { in bindHeaderText()
5615 processLegacyText(headerText), p)); in bindHeaderText()