Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/contacts/common/util/
DAccountFilterUtil.java43 final TextView headerTextView = in updateAccountFilterTitle() local
51 headerTextView.setText(R.string.list_filter_phones); in updateAccountFilterTitle()
55 headerTextView.setText( in updateAccountFilterTitle()
59 headerTextView.setText(R.string.listCustomView); in updateAccountFilterTitle()
65 headerTextView.setText(R.string.list_filter_all_accounts); in updateAccountFilterTitle()
69 headerTextView.setText( in updateAccountFilterTitle()
73 headerTextView.setText(R.string.listCustomView); in updateAccountFilterTitle()
76 headerTextView.setText(R.string.listSingleContact); in updateAccountFilterTitle()
/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/
DNewVoicemailHeaderViewHolder.java28 private final TextView headerTextView; field in NewVoicemailHeaderViewHolder
32 headerTextView = view.findViewById(R.id.new_voicemail_header_text); in NewVoicemailHeaderViewHolder()
36 headerTextView.setText(header); in setHeader()
41 return headerTextView.getText().toString(); in getHeaderText()
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/preprovisioning/terms/adapters/
DTermsListAdapterCarTest.java79 TextView headerTextView = new TextView(InstrumentationRegistry.getTargetContext()); in onBindViewHolderSetsViewCorrectly() local
81 when(mView.findViewById(R.id.header_text)).thenReturn(headerTextView); in onBindViewHolderSetsViewCorrectly()
94 assertThat(headerTextView.getText()).isEqualTo(header2); in onBindViewHolderSetsViewCorrectly()
95 assertThat(headerTextView.getContentDescription()) in onBindViewHolderSetsViewCorrectly()
/packages/apps/Dialer/java/com/android/dialer/calllog/ui/
DHeaderViewHolder.java26 private TextView headerTextView; field in HeaderViewHolder
30 headerTextView = view.findViewById(R.id.new_call_log_header_text); in HeaderViewHolder()
34 headerTextView.setText(header); in setHeader()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactListItemView.java1009 final TextView headerTextView = (TextView) mHeaderView; in addTextHeader() local
1010 headerTextView.setTextAppearance(getContext(), R.style.SectionHeaderStyle); in addTextHeader()
1011 headerTextView.setGravity(Gravity.CENTER_HORIZONTAL); in addTextHeader()
1012 updateHeaderText(headerTextView, title); in addTextHeader()
1013 addView(headerTextView); in addTextHeader()
1016 private void updateHeaderText(TextView headerTextView, String title) { in updateHeaderText() argument
1017 setMarqueeText(headerTextView, title); in updateHeaderText()
1018 headerTextView.setAllCaps(true); in updateHeaderText()
1020 headerTextView.setContentDescription( in updateHeaderText()
1023 headerTextView.setContentDescription(title); in updateHeaderText()
[all …]