Home
last modified time | relevance | path

Searched refs:mPreviewText (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
H A DCaptionSettingsFragment.java48 private SubtitleView mPreviewText; field in CaptionSettingsFragment
119 mPreviewText = view.findViewById(R.id.preview_text); in onViewCreated()
167 if (mPreviewText != null) { in refreshPreviewText()
170 mPreviewText.setVisibility(View.VISIBLE); in refreshPreviewText()
172 mPreviewText.setStyle(mStyleId); in refreshPreviewText()
173 mPreviewText.setTextSize(mFontScale * mDefaultFontSize); in refreshPreviewText()
177 mPreviewText.setText(localizedText); in refreshPreviewText()
179 mPreviewText.setText(getResources() in refreshPreviewText()
192 mPreviewText.invalidate(); in refreshPreviewText()
194 mPreviewText.setVisibility(View.INVISIBLE); in refreshPreviewText()
/aosp12/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java152 private TextView mPreviewText; field in KeyboardView
337 mPreviewPopup.setContentView(mPreviewText); in KeyboardView()
930 mPreviewText.setCompoundDrawables(null, null, null, in showKey()
932 mPreviewText.setText(null); in showKey()
935 mPreviewText.setText(getPreviewText(key)); in showKey()
938 mPreviewText.setTypeface(Typeface.DEFAULT_BOLD); in showKey()
941 mPreviewText.setTypeface(Typeface.DEFAULT); in showKey()
947 + mPreviewText.getPaddingLeft() + mPreviewText.getPaddingRight()); in showKey()
949 LayoutParams lp = mPreviewText.getLayoutParams(); in showKey()
968 mPreviewText.getBackground().setState( in showKey()
[all …]
/aosp12/packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/car/
H A DKeyboardView.java164 private TextView mPreviewText; field in KeyboardView
353 mPreviewPopup.setContentView(mPreviewText); in KeyboardView()
1037 mPreviewText.setCompoundDrawables(null, null, null, in showKey()
1039 mPreviewText.setText(null); in showKey()
1042 mPreviewText.setText(getPreviewText(key)); in showKey()
1045 mPreviewText.setTypeface(Typeface.DEFAULT_BOLD); in showKey()
1048 mPreviewText.setTypeface(Typeface.DEFAULT); in showKey()
1054 + mPreviewText.getPaddingLeft() + mPreviewText.getPaddingRight()); in showKey()
1056 LayoutParams lp = mPreviewText.getLayoutParams(); in showKey()
1067 mPopupPreviewY = - mPreviewText.getMeasuredHeight(); in showKey()
[all …]
/aosp12/packages/apps/Settings/src/com/android/settings/accessibility/
H A DCaptionAppearanceFragment.java71 private SubtitleView mPreviewText; field in CaptionAppearanceFragment
141 final SubtitleView preview = mPreviewText; in refreshPreviewText()
205 mPreviewText = captionPreview.findViewById(R.id.preview_text); in initializeAllPreferences()