Home
last modified time | relevance | path

Searched refs:titleView (Results 1 – 25 of 26) sorted by relevance

12

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/
H A DCredentialPasswordView.kt25 private lateinit var titleView: TextView
52 titleView = requireViewById(R.id.title)
72 val subTitleBottom: Int = if (subtitleView.isGone) titleView.bottom else subtitleView.bottom
121 titleView.isSingleLine = true
122 titleView.ellipsize = TextUtils.TruncateAt.MARQUEE
123 titleView.marqueeRepeatLimit = -1
125 titleView.isSelected = accessibilityManager?.shouldMarquee() ?: false
127 titleView.isSingleLine = false
128 titleView.ellipsize = null
130 titleView.isSelected = false
/aosp14/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java202 View titleView = childPrefScreen.findViewById(android.R.id.title); in showDialog() local
214 if (titleView != null) { in showDialog()
215 titleView.setVisibility(View.GONE); in showDialog()
219 if (titleView instanceof TextView) { in showDialog()
220 ((TextView) titleView).setText(title); in showDialog()
221 titleView.setVisibility(View.VISIBLE); in showDialog()
H A DPreferenceFragment.java371 View titleView = root.findViewById(android.R.id.title); in bindPreferences() local
372 if (titleView instanceof TextView) { in bindPreferences()
375 titleView.setVisibility(View.GONE); in bindPreferences()
377 ((TextView) titleView).setText(title); in bindPreferences()
378 titleView.setVisibility(View.VISIBLE); in bindPreferences()
H A DPreference.java634 final TextView titleView = (TextView) view.findViewById(com.android.internal.R.id.title); in onBindView() local
635 if (titleView != null) { in onBindView()
638 titleView.setText(title); in onBindView()
639 titleView.setVisibility(View.VISIBLE); in onBindView()
641 titleView.setSingleLine(mSingleLineTitle); in onBindView()
644 titleView.setVisibility(View.GONE); in onBindView()
/aosp14/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
H A DCompanionDeviceDataTransferActivity.java70 TextView titleView = findViewById(R.id.title); in onCreate() local
88 titleView.setText(getHtmlFromResources(this, in onCreate()
/aosp14/frameworks/base/core/java/com/android/internal/app/
H A DAbstractMultiProfilePagerAdapter.java377 TextView titleView = emptyStateView.findViewById(R.id.resolver_empty_state_title); in showEmptyState() local
380 titleView.setVisibility(View.VISIBLE); in showEmptyState()
381 titleView.setText(title); in showEmptyState()
383 titleView.setVisibility(View.GONE); in showEmptyState()
H A DResolverActivity.java2190 final TextView titleView = findViewById(R.id.title);
2191 if (titleView != null) {
2192 titleView.setVisibility(View.GONE);
2201 final TextView titleView = findViewById(R.id.title);
2202 if (titleView != null) {
2203 titleView.setText(title);
H A DChooserActivity.java2983 final TextView titleView = findViewById(R.id.title);
2984 if (titleView != null) {
2985 titleView.setFocusable(true);
2986 titleView.setFocusableInTouchMode(true);
2987 titleView.requestFocus();
2988 titleView.requestAccessibilityFocus();
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
H A DControlsFavoritingActivity.kt84 private lateinit var titleView: TextView
229 titleView.text = title
230 titleView.requestFocus()
285 titleView = requireViewById<TextView>(R.id.title).apply {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/
H A DCredentialViewBinder.kt44 val titleView: TextView = view.requireViewById(R.id.title)
70 titleView.text = header.title
H A DBiometricViewBinder.kt98 val titleView = view.requireViewById<TextView>(R.id.title) regex
103 titleView.isSelected =
139 titleView.text = viewModel.title.first()
188 titleView,
194 titleView,
/aosp14/frameworks/base/core/java/com/android/internal/view/menu/
H A DStandardMenuPopup.java191 TextView titleView = (TextView) titleItemView.findViewById( in tryShow() local
193 if (titleView != null) { in tryShow()
194 titleView.setText(mMenu.getHeaderTitle()); in tryShow()
H A DCascadingMenuPopup.java447 final TextView titleView = (TextView) titleItemView.findViewById(R.id.title); in showMenu() local
449 titleView.setText(menu.getHeaderTitle()); in showMenu()
/aosp14/frameworks/base/core/tests/batterystatstests/BatteryStatsViewer/src/com/android/frameworks/core/batterystatsviewer/
H A DBatteryConsumerPickerActivity.java242 viewHolder.titleView.setText(item.label); in onBindViewHolder()
272 public TextView titleView; field in BatteryConsumerPickerActivity.BatteryConsumerViewHolder
282 titleView = view.findViewById(android.R.id.title); in BatteryConsumerViewHolder()
/aosp14/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DSelectPrinterActivity.java419 TextView titleView = findViewById(R.id.title); in updateEmptyView() local
422 titleView.setText(R.string.print_no_print_services); in updateEmptyView()
425 titleView.setText(R.string.print_searching_for_printers); in updateEmptyView()
428 titleView.setText(R.string.print_no_printers); in updateEmptyView()
697 TextView titleView = (TextView) convertView.findViewById(R.id.title);
698 titleView.setText(title);
/aosp14/frameworks/base/packages/SettingsLib/BarChartPreference/src/com/android/settingslib/widget/
H A DBarChartPreference.java191 final TextView titleView = (TextView) holder.findViewById(R.id.bar_chart_title); in bindChartTitleView() local
192 titleView.setText(mBarChartInfo.getTitle()); in bindChartTitleView()
/aosp14/frameworks/base/packages/SettingsLib/BannerMessagePreference/src/com/android/settingslib/widget/
H A DBannerMessagePreference.java144 final TextView titleView = (TextView) holder.findViewById(R.id.banner_title); in onBindViewHolder() local
146 titleView.setText(title); in onBindViewHolder()
147 titleView.setVisibility(title == null ? View.GONE : View.VISIBLE); in onBindViewHolder()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/dialog/
H A DMediaOutputBaseDialogTest.java193 final TextView titleView = mMediaOutputBaseDialogImpl.mDialogView.requireViewById( in refresh_checkTitle() local
196 assertThat(titleView.getVisibility()).isEqualTo(View.VISIBLE); in refresh_checkTitle()
197 assertThat(titleView.getText()).isEqualTo(mHeaderTitle); in refresh_checkTitle()
/aosp14/frameworks/base/core/java/android/widget/
H A DActivityChooserView.java770 TextView titleView = convertView.findViewById(R.id.title); in getView() local
771 titleView.setText(mContext.getString( in getView()
786 TextView titleView = convertView.findViewById(R.id.title); in getView() local
787 titleView.setText(activity.loadLabel(packageManager)); in getView()
/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/widget/
H A DAppEntitiesHeaderControllerTest.java213 final View titleView = mAppEntitiesHeaderView.findViewById(R.id.header_title); in apply_noAppEntitySet_shouldOnlyShowTitleAndEmptyView() local
221 assertThat(titleView.getVisibility()).isEqualTo(View.VISIBLE); in apply_noAppEntitySet_shouldOnlyShowTitleAndEmptyView()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/privacy/
H A DPrivacyDialogV2.kt145 val titleView = itemHeader.findViewById<TextView>(R.id.privacy_dialog_item_header_title)!! regex
146 titleView.text = permGroupLabel
147 titleView.contentDescription = permGroupLabel
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
H A DFillUi.java165 final TextView titleView = decor.findViewById(R.id.autofill_dataset_title); in FillUi() local
166 if (titleView != null) { in FillUi()
167 titleView.setText(mContext.getString(R.string.autofill_window_title, serviceLabel)); in FillUi()
H A DSaveUi.java235 final TextView titleView = view.findViewById(R.id.autofill_save_title); in SaveUi() local
294 titleView.setText(mTitle); in SaveUi()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/
H A DMediaControlPanel.java1426 TextView titleView = mRecommendationViewHolder.getMediaTitles().get(itemIndex);
1427 titleView.setText(title);
1459 mRecommendationViewHolder.getMediaTitles().forEach((titleView) -> {
1460 setVisibleAndAlpha(expandedSet, titleView.getId(), titlesVisible);
1461 setVisibleAndAlpha(collapsedSet, titleView.getId(), titlesVisible);
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/
H A DControlsUiControllerImpl.kt875 titleView.text = item.getTitle()
883 val titleView: TextView = itemView.requireViewById(R.id.controls_spinner_item)

12