Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/
DNotificationSectionHeadersModule.kt45 .headerText(R.string.notification_section_header_incoming) in providesIncomingHeaderSubcomponent()
56 .headerText(R.string.notification_section_header_alerting) in providesIncomingHeaderSubcomponent()
67 .headerText(R.string.notification_section_header_conversations) in providesIncomingHeaderSubcomponent()
78 .headerText(R.string.notification_section_header_gentle) in providesIncomingHeaderSubcomponent()
142 @BindsInstance fun headerText(@HeaderText @StringRes headerText: Int): Builder in providesIncomingHeaderSubcomponent() method
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
DHeaderMixin.java48 final CharSequence headerText = a.getText(R.styleable.SuwHeaderMixin_suwHeaderText); in HeaderMixin() local
49 if (headerText != null) { in HeaderMixin()
50 setText(headerText); in HeaderMixin()
/frameworks/base/core/java/android/view/
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()
/frameworks/base/core/tests/coretests/src/com/android/internal/app/
DResolverActivityTest.java596 TextView headerText = activity.findViewById(R.id.title); in testWorkTab_headerIsVisibleInPersonalTab() local
597 String initialText = headerText.getText().toString(); in testWorkTab_headerIsVisibleInPersonalTab()
599 assertThat(headerText.getVisibility(), is(View.VISIBLE)); in testWorkTab_headerIsVisibleInPersonalTab()
616 TextView headerText = activity.findViewById(R.id.title); in testWorkTab_switchTabs_headerStaysSame() local
617 String initialText = headerText.getText().toString(); in testWorkTab_switchTabs_headerStaysSame()
622 String currentText = headerText.getText().toString(); in testWorkTab_switchTabs_headerStaysSame()
623 assertThat(headerText.getVisibility(), is(View.VISIBLE)); in testWorkTab_switchTabs_headerStaysSame()
/frameworks/base/core/java/android/app/
DNotification.java6111 CharSequence headerText = p.mSubText; in bindHeaderText() local
6112 if (headerText == null && mStyle != null && mStyle.mSummaryTextSet in bindHeaderText()
6114 headerText = mStyle.mSummaryText; in bindHeaderText()
6116 if (headerText == null in bindHeaderText()
6119 headerText = mN.extras.getCharSequence(EXTRA_INFO_TEXT); in bindHeaderText()
6121 if (!TextUtils.isEmpty(headerText)) { in bindHeaderText()
6123 processLegacyText(headerText), p)); in bindHeaderText()