Home
last modified time | relevance | path

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

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
DSettingsLayoutFragment.java320 TextView titleView = (TextView) contentView.getTag(R.id.title); in updateViews() local
321 titleView.setText(mTitle); in updateViews()
415 View titleView = (View) contentView.getTag(R.id.title); in onCreateAnimator() local
426 animators.add(createSlideInFromEndAnimator(titleView)); in onCreateAnimator()
434 animators.add(createSlideOutToStartAnimator(titleView)); in onCreateAnimator()
443 animators.add(createSlideInFromStartAnimator(titleView)); in onCreateAnimator()
451 animators.add(createSlideOutToEndAnimator(titleView)); in onCreateAnimator()
494 TextView titleView = (TextView) content.findViewById(R.id.title); in initializeContentView() local
497 titleView.setText(mTitle); in initializeContentView()
505 titleView.setFocusable(true); in initializeContentView()
[all …]
DDialogFragment.java303 View titleView = (View) contentView.getTag(R.id.title); in onCreateAnimator() local
314 animators.add(createSlideInFromEndAnimator(titleView)); in onCreateAnimator()
322 animators.add(createSlideOutToStartAnimator(titleView)); in onCreateAnimator()
331 animators.add(createSlideInFromStartAnimator(titleView)); in onCreateAnimator()
339 animators.add(createSlideOutToEndAnimator(titleView)); in onCreateAnimator()
423 TextView titleView = (TextView) content.findViewById(R.id.title); in setContentView() local
426 titleView.setText(mTitle); in setContentView()
435 titleView.setFocusable(true); in setContentView()
436 titleView.setFocusableInTouchMode(true); in setContentView()
480 content.setTag(R.id.title, titleView); in setContentView()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
DSuggestionStripLayoutHelper.java602 final TextView titleView = (TextView)importantNoticeStrip.findViewById( in layoutImportantNotice() local
604 final int width = titleView.getWidth() - titleView.getPaddingLeft() in layoutImportantNotice()
605 - titleView.getPaddingRight(); in layoutImportantNotice()
606 titleView.setTextColor(mColorAutoCorrect); in layoutImportantNotice()
607 titleView.setText(importantNoticeTitle); in layoutImportantNotice()
608 titleView.setTextScaleX(1.0f); // Reset textScaleX. in layoutImportantNotice()
609 final float titleScaleX = getTextScaleX(importantNoticeTitle, width, titleView.getPaint()); in layoutImportantNotice()
610 titleView.setTextScaleX(titleScaleX); in layoutImportantNotice()
/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/apps/Settings/src/com/android/settings/quicklaunch/
DShortcutPreference.java111 TextView titleView = (TextView) view.findViewById(android.R.id.title); in onBindView() local
115 sRegularTitleColor = titleView.getTextColors(); in onBindView()
122 titleView.setTextColor(color); in onBindView()
/packages/apps/Settings/src/com/android/settings/
DMasterClear.java212 View titleView = newTitleView(contents, inflater); in loadAccountList() local
213 final TextView titleText = (TextView) titleView.findViewById(android.R.id.title); in loadAccountList()
216 contents.addView(titleView); in loadAccountList()
/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/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
DWpsScanningFragment.java40 TextView titleView = (TextView) view.findViewById(R.id.title); in onCreateView() local
41 titleView.setText(getActivity().getString(R.string.wifi_wps_title)); in onCreateView()
DWpsPinFragment.java46 TextView titleView = (TextView) view.findViewById(R.id.title); in onCreateView() local
47 titleView.setText(getActivity().getString(R.string.wifi_wps_onstart_pin, in onCreateView()
/packages/apps/Settings/src/com/android/settings/fuelgauge/
DPowerGaugePreference.java70 final TextView titleView = (TextView) view.findViewById(android.R.id.title); in onBindView() local
71 titleView.setContentDescription(mContentDescription); in onBindView()
/packages/apps/Settings/src/com/android/settings/location/
DDimmableIconPreference.java79 final TextView titleView = (TextView) view.findViewById(android.R.id.title); in onBindView() local
80 titleView.setContentDescription(mContentDescription); in onBindView()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
DMessageWizardFragment.java91 TextView titleView = (TextView) getView().findViewById(R.id.status_text); in onResume() local
92 titleView.requestFocus(); in onResume()
/packages/apps/Settings/src/com/android/settings/applications/
DProcessStatsMemDetail.java106 TextView titleView = (TextView) item.findViewById(android.R.id.title); in addDetailsItem() local
108 titleView.setText(title); in addDetailsItem()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
DSetupWizardActivity.java444 final TextView titleView = (TextView)mStepView.findViewById(R.id.setup_step_title);
445 titleView.setText(res.getString(title, applicationName));
/packages/apps/DeskClock/src/com/android/deskclock/alarms/
DAlarmActivity.java190 final TextView titleView = (TextView) mContentView.findViewById(R.id.title); in onCreate() local
194 titleView.setText(mAlarmInstance.getLabelOrDefault(this)); in onCreate()
/packages/apps/Settings/src/com/android/settings/print/
DPrintServiceSettingsFragment.java576 TextView titleView = (TextView) convertView.findViewById(R.id.title);
577 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()