Searched refs:textView (Results 1 - 25 of 93) sorted by last modified time

1234

/packages/services/Telephony/src/com/android/phone/
H A DSimContacts.java348 TextView textView = (TextView) itemInfo.targetView.findViewById(android.R.id.text1);
349 if (textView != null) {
350 menu.setHeaderTitle(textView.getText());
/packages/services/Telephony/src/com/android/phone/settings/fdn/
H A DEditFdnContactScreen.java443 TextView textView = (TextView) v;
444 Selection.selectAll((Spannable) textView.getText());
/packages/services/Telecomm/src/com/android/server/telecom/
H A DMultiLineTitleEditTextPreference.java68 TextView textView = (TextView) view.findViewById(com.android.internal.R.id.title);
69 if (textView != null) {
70 textView.setSingleLine(false);
/packages/services/Car/TrustAgent/src/com/android/car/trust/
H A DPhoneEnrolmentController.java79 * @param textView A text view used to display results from various BLE actions
83 public void bind(TextView textView, Button scanButton, Button enrolButton) { argument
84 mTextView = textView;
H A DPhoneUnlockController.java77 * @param textView A text view used to display results from various BLE actions
81 public void bind(TextView textView, Button scanButton, Button enrolButton) { argument
82 mTextView = textView;
/packages/services/BuiltInPrintService/src/com/android/bips/ui/
H A DAddManualPrinterDialog.java169 public boolean onEditorAction(TextView textView, int id, KeyEvent keyEvent) { argument
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DAlbumDataAdapter.java98 TextView textView = (TextView) vTextView;
99 textView.setText(data.title);
H A DSectionedAlbumDataAdapter.java186 TextView textView = (TextView) vTextView;
187 textView.setText((String) getItem(position));
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DRingtonePickerActivity.java421 TextView textView = (TextView) getLayoutInflater().inflate(
423 textView.setText(textResId);
424 listView.addHeaderView(textView);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DTutorialEN.java91 TextView textView; field in class:TutorialEN.Bubble
125 textView = (TextView) inflate.inflate(R.layout.bubble_text, null);
126 textView.setBackgroundDrawable(bubbleBackground);
127 textView.setText(text);
129 textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);
131 window.setContentView(textView);
163 int textHeight = chooseSize(window, inputView, text, textView);
164 offy -= textView.getPaddingTop() + textHeight;
170 textView.setOnTouchListener(new View.OnTouchListener() {
195 textView
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DTutorialJAJP.java93 TextView textView; field in class:TutorialJAJP.Bubble
127 textView = (TextView) inflate.inflate(R.layout.bubble_text, null);
128 textView.setBackgroundDrawable(bubbleBackground);
129 textView.setText(text);
131 textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);
133 window.setContentView(textView);
165 int textHeight = chooseSize(window, inputView, text, textView);
166 offy -= textView.getPaddingTop() + textHeight;
172 textView.setOnTouchListener(new View.OnTouchListener() {
198 textView
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DTextCandidatesViewManager.java201 /** List of textView for CandiData List 1st for Symbol mode */
203 /** List of textView for CandiData List 2st for Symbol mode */
205 /** Now focus textView index */
887 TextView textView;
931 textView = (TextView) layout.getChildAt(mFullViewWordCount);
932 if (textView == null) {
933 textView = createCandidateView();
934 textView.setLayoutParams(params);
936 mViewCandidateList2nd.addView(textView);
938 mViewCandidateList2nd.updateViewLayout(textView, param
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
H A DTextViewCompatUtils.java35 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(final TextView textView, argument
38 textView.setCompoundDrawablesWithIntrinsicBounds(start, top, end, bottom);
41 CompatUtils.invoke(textView, null, METHOD_setCompoundDrawablesRelativeWithIntrinsicBounds,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DCursorAnchorInfoUtils.java90 * @param textView the target text view from which {@link CursorAnchorInfoCompatWrapper} is to
98 @Nonnull final TextView textView) {
102 return CursorAnchorInfoCompatWrapper.wrap(extractFromTextViewInternal(textView));
107 * @param textView the target text view from which {@link CursorAnchorInfo} is to be extracted.
113 private static CursorAnchorInfo extractFromTextViewInternal(@Nonnull final TextView textView) { argument
114 final Layout layout = textView.getLayout();
121 final int selectionStart = textView.getSelectionStart();
122 builder.setSelectionRange(selectionStart, textView.getSelectionEnd());
125 final Matrix viewToScreenMatrix = new Matrix(textView.getMatrix());
127 textView
97 extractFromTextView( @onnull final TextView textView) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DStyleUtils.java36 public static void stripUnderlinesAndLinkUrls(TextView textView, argument
38 final Spannable spannable = (Spannable) textView.getText();
63 public static void stripUnderlinesAndUrl(TextView textView) { argument
64 stripUnderlinesAndLinkUrls(textView, null /* onClickListener */);
/packages/experimental/FilledApp/src/foo/bar/filled/
H A DCustomLinearLayout.java135 TextView textView = (TextView) view;
136 structure.setText(textView.getText(), textView.getSelectionStart(),
137 textView.getSelectionEnd());
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
H A DContactFragment.java786 private void setMaxLines(TextView textView, int maxLines) { argument
788 textView.setSingleLine(true);
789 textView.setEllipsize(TextUtils.TruncateAt.END);
791 textView.setSingleLine(false);
792 textView.setMaxLines(maxLines);
793 textView.setEllipsize(null);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
H A DBaseContentFragment.java223 TextView textView = (TextView) parent.findViewById(textViewResourceId);
224 if (textView != null && text != null) {
225 textView.setText(text);
234 textView.setFocusable(true);
235 textView.setFocusableInTouchMode(true);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DMessageHeaderView.java1346 private static void stripUnderlines(TextView textView, Account account) { argument
1347 final Spannable spannable = (Spannable) textView.getText();
1348 final URLSpan[] urls = textView.getUrls();
/packages/apps/UnifiedEmail/src/com/android/mail/drawer/
H A DFooterItem.java98 final TextView textView = (TextView) footerItemView.
100 textView.setText(getTextResourceId());
H A DHeaderDrawerItem.java55 final TextView textView = (TextView) headerView.findViewById(R.id.header_text);
56 textView.setText(mResource);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DMaterialSearchActionView.java231 public boolean onEditorAction(TextView textView, int actionId, KeyEvent keyEvent) { argument
/packages/apps/TV/libs/
H A Dexoplayer.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer/ ...
H A Dexoplayer_v2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer2/ ...
/packages/apps/TV/src/com/android/tv/dvr/ui/browse/
H A DDetailsContentPresenter.java211 private FontMetricsInt getFontMetricsInt(TextView textView) { argument
213 paint.setTextSize(textView.getTextSize());
214 paint.setTypeface(textView.getTypeface());

Completed in 1572 milliseconds

1234