Searched refs:headerTextView (Results 1 – 5 of 5) sorted by relevance
43 final TextView headerTextView = in updateAccountFilterTitle() local51 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()
28 private final TextView headerTextView; field in NewVoicemailHeaderViewHolder32 headerTextView = view.findViewById(R.id.new_voicemail_header_text); in NewVoicemailHeaderViewHolder()36 headerTextView.setText(header); in setHeader()41 return headerTextView.getText().toString(); in getHeaderText()
79 TextView headerTextView = new TextView(InstrumentationRegistry.getTargetContext()); in onBindViewHolderSetsViewCorrectly() local81 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()
26 private TextView headerTextView; field in HeaderViewHolder30 headerTextView = view.findViewById(R.id.new_call_log_header_text); in HeaderViewHolder()34 headerTextView.setText(header); in setHeader()
1009 final TextView headerTextView = (TextView) mHeaderView; in addTextHeader() local1010 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() argument1017 setMarqueeText(headerTextView, title); in updateHeaderText()1018 headerTextView.setAllCaps(true); in updateHeaderText()1020 headerTextView.setContentDescription( in updateHeaderText()1023 headerTextView.setContentDescription(title); in updateHeaderText()[all …]