Home
last modified time | relevance | path

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

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
DMessageWizardFragment.java58 final TextView titleView = (TextView) view.findViewById(R.id.status_text); in onCreateView() local
65 titleView.setText(title); in onCreateView()
66 titleView.setVisibility(View.VISIBLE); in onCreateView()
68 titleView.setFocusable(true); in onCreateView()
69 titleView.setFocusableInTouchMode(true); in onCreateView()
72 titleView.setVisibility(View.GONE); in onCreateView()
88 TextView titleView = (TextView) getView().findViewById(R.id.status_text); in onResume() local
89 titleView.requestFocus(); in onResume()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DUsbModeChooserActivity.java137 TextView titleView = (TextView) v.findViewById(android.R.id.title); in inflateOption() local
138 titleView.setText(getTitle(mode)); in inflateOption()
144 setDisabledByAdmin(v, titleView, summaryView); in inflateOption()
169 private void setDisabledByAdmin(View rootView, TextView titleView, TextView summaryView) { in setDisabledByAdmin() argument
171 titleView.setEnabled(false); in setDisabledByAdmin()
174 Drawable[] compoundDrawables = titleView.getCompoundDrawablesRelative(); in setDisabledByAdmin()
/packages/apps/Calendar/src/com/android/calendar/alerts/
DAlertAdapter.java86 TextView titleView = (TextView) view.findViewById(R.id.event_title); in updateView() local
97 titleView.setTextColor(mPastEventColor); in updateView()
101 titleView.setTextColor(mTitleColor); in updateView()
110 titleView.setText(eventName); in updateView()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
DSuggestionStripLayoutHelper.java549 final TextView titleView = (TextView)importantNoticeStrip.findViewById( in layoutImportantNotice() local
551 final int width = titleView.getWidth() - titleView.getPaddingLeft() in layoutImportantNotice()
552 - titleView.getPaddingRight(); in layoutImportantNotice()
553 titleView.setTextColor(mColorAutoCorrect); in layoutImportantNotice()
554 titleView.setText(importantNoticeTitle); // TextView.setText() resets text scale x to 1.0. in layoutImportantNotice()
555 final float titleScaleX = getTextScaleX(importantNoticeTitle, width, titleView.getPaint()); in layoutImportantNotice()
556 titleView.setTextScaleX(titleScaleX); in layoutImportantNotice()
/packages/apps/Settings/src/com/android/settings/
DDimmableIconPreference.java68 final TextView titleView = (TextView) view.findViewById(android.R.id.title); in onBindViewHolder() local
69 titleView.setContentDescription(mContentDescription); in onBindViewHolder()
DMasterClear.java231 View titleView = Utils.inflateCategoryHeader(inflater, contents); in loadAccountList() local
232 final TextView titleText = (TextView) titleView.findViewById(android.R.id.title); in loadAccountList()
235 contents.addView(titleView); in loadAccountList()
/packages/apps/TV/src/com/android/tv/ui/sidepanel/
DActionItem.java56 TextView titleView = (TextView) view.findViewById(R.id.title); in onBind() local
57 titleView.setText(mTitle); in onBind()
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
DSetupLayoutActivity.java74 final TextView titleView = (TextView) findViewById(R.id.suw_layout_title); in maybeSetLogoAndMainColor() local
76 titleView.setTextColor(Color.BLACK); in maybeSetLogoAndMainColor()
78 titleView.setTextColor(Color.WHITE); in maybeSetLogoAndMainColor()
/packages/apps/Settings/src/com/android/settings/fuelgauge/
DPowerGaugePreference.java73 final TextView titleView = (TextView) view.findViewById(android.R.id.title); in onBindViewHolder() local
74 titleView.setContentDescription(mContentDescription); in onBindViewHolder()
/packages/apps/TV/src/com/android/tv/menu/
DMenuLayoutManager.java586 View titleView = mMenuRowViews.get(position).getTitleView(); in setSelectedPositionSmooth()
587 mTitleFadeOutAnimator = createAlphaAnimator(titleView, titleView.getAlpha(), in setSelectedPositionSmooth()
709 View titleView = view.getTitleView(); in onMenuRowUpdated() local
710 MarginLayoutParams params = (MarginLayoutParams) titleView.getLayoutParams(); in onMenuRowUpdated()
711 titleView.layout(view.getPaddingLeft() + params.leftMargin, in onMenuRowUpdated()
/packages/apps/Settings/src/com/android/settings/applications/
DProcessStatsMemDetail.java114 TextView titleView = (TextView) item.findViewById(android.R.id.title); in addDetailsItem() local
116 titleView.setText(title); in addDetailsItem()
/packages/apps/Gallery/src/com/android/camera/
DGalleryPicker.java921 TextView titleView = (TextView) v.findViewById(R.id.title);
930 titleView.setText(title);
933 titleView.setText(item.mName);
939 titleView.requestLayout();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
DSetupWizardActivity.java453 final TextView titleView = (TextView)mStepView.findViewById(R.id.setup_step_title);
454 titleView.setText(res.getString(title, applicationName));
/packages/apps/DeskClock/src/com/android/deskclock/alarms/
DAlarmActivity.java206 final TextView titleView = (TextView) mContentView.findViewById(R.id.title); in onCreate() local
210 titleView.setText(mAlarmInstance.getLabelOrDefault(this)); in onCreate()
/packages/apps/Settings/src/com/android/settings/print/
DPrintServiceSettingsFragment.java557 TextView titleView = (TextView) convertView.findViewById(R.id.title);
558 titleView.setText(title);
/packages/apps/Calendar/src/com/android/calendar/
DDayView.java3646 TextView titleView = (TextView) mPopupView.findViewById(R.id.event_title); in updateEventDetails() local
3647 titleView.setText(event.title); in updateEventDetails()