Searched refs:textView (Results 126 - 147 of 147) sorted by relevance

123456

/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java454 TextView textView = new TextView(getContext(), null,
456 textView.setEllipsize(TruncateAt.END);
460 textView.setLayoutParams(lp);
461 addView(textView);
462 mTextView = textView;
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DScrollingTabContainerView.java492 TextView textView = new AppCompatTextView(getContext(), null,
494 textView.setEllipsize(TruncateAt.END);
498 textView.setLayoutParams(lp);
499 addView(textView);
500 mTextView = textView;
H A DAppCompatTextHelper.java298 final TextView textView = textViewWeak.get();
299 if (textView != null) {
300 textView.setTypeface(typeface, mStyle);
H A DAppCompatTextViewAutoSizeHelper.java99 AppCompatTextViewAutoSizeHelper(TextView textView) { argument
100 mTextView = textView;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DNotificationInfoTest.java171 final TextView textView = mNotificationInfo.findViewById(R.id.pkgname);
172 assertTrue(textView.getText().toString().contains("App Name"));
218 final TextView textView = mNotificationInfo.findViewById(R.id.channel_name);
219 assertEquals(TEST_CHANNEL_NAME, textView.getText());
226 final TextView textView = mNotificationInfo.findViewById(R.id.channel_name);
227 assertEquals(GONE, textView.getVisibility());
238 final TextView textView = mNotificationInfo.findViewById(R.id.channel_name);
239 assertEquals(VISIBLE, textView.getVisibility());
246 final TextView textView = mNotificationInfo.findViewById(R.id.channel_name);
247 assertEquals(VISIBLE, textView
[all...]
H A DAppOpsInfoTest.java98 final TextView textView = mAppOpsInfo.findViewById(R.id.pkgname);
99 assertTrue(textView.getText().toString().contains("App Name"));
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DNekoLand.java221 holder.textView.setText(mCats[position].getName());
324 private final TextView textView; field in class:NekoLand.CatHolder
332 textView = (TextView) itemView.findViewById(android.R.id.title);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardIndicationController.java354 // animates textView - textView moves up and bounces down
355 private void animateText(KeyguardIndicationTextView textView, String indication) { argument
362 textView.animate()
369 textView.switchIndication(indication);
373 textView.animate()
/frameworks/support/frameworks/support/samples/SupportVectorDrawableDemos/src/main/java/com/example/android/support/vectordrawable/app/
H A DAVDCListenerDemo.java45 final TextView textView1 = findViewById(R.id.textView);
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
H A DGridActivity.java395 TextView textView = new TextView(parent.getContext()) {
417 textView.setTextColor(Color.BLACK);
418 textView.setOnFocusChangeListener(mItemFocusChangeListener);
419 itemView = textView;
/frameworks/support/samples/SupportVectorDrawableDemos/src/main/java/com/example/android/support/vectordrawable/app/
H A DAVDCListenerDemo.java45 final TextView textView1 = findViewById(R.id.textView);
/frameworks/base/core/java/android/widget/
H A DFastScroller.java544 final TextView textView = new TextView(context);
545 textView.setLayoutParams(params);
546 textView.setSingleLine(true);
547 textView.setEllipsize(TruncateAt.MIDDLE);
548 textView.setGravity(Gravity.CENTER);
549 textView.setAlpha(0f);
552 textView.setLayoutDirection(mList.getLayoutDirection());
554 return textView;
H A DSpellChecker.java104 public SpellChecker(TextView textView) { argument
105 mTextView = textView;
H A DTextView.java4231 * TextView textView = (TextView) findViewById(R.id.textView);
4232 * textView.setFontVariationSettings("'wdth' 150");
4240 * TextView textView = (TextView) findViewById(R.id.textView);
4241 * textView.setFontVariationSettings("'slnt' 20, 'ital' 1");
12401 final TextView textView = mView.get();
12402 if (textView != null && (textView.isFocused() || textView
[all...]
H A DRemoteViews.java2157 TextView textView = (TextView) v;
2158 textView.setText(NotificationColorUtil.clearColorSpans(textView.getText()));
2159 textView.setTextColor(textColor);
H A DEditor.java373 Editor(TextView textView) { argument
374 mTextView = textView;
3702 TextView textView = (TextView) convertView;
3704 if (textView == null) {
3705 textView = (TextView) mInflater.inflate(mTextView.mTextEditSuggestionItemLayout,
3710 textView.setText(suggestionInfo.mText);
3711 return textView;
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DRecyclerViewFocusRecoveryTest.java854 public final TextView textView; field in class:RecyclerViewFocusRecoveryTest.FocusViewHolderWithChildren
861 textView = (TextView) root.findViewById(R.id.text_view);
869 textView.setFocusableInTouchMode(focusable);
874 textView.setFocusable(focusable);
880 textView.setText(getText(item));
885 return textView;
/frameworks/base/core/tests/coretests/src/android/widget/
H A DRemoteViewsTest.java104 TextView textView = (TextView) inflated.findViewById(R.id.text);
105 assertEquals("", textView.getText());
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DSearchBar.java255 public boolean onEditorAction(TextView textView, int action, KeyEvent keyEvent) {
/frameworks/av/packages/MediaComponents/src/com/android/widget/
H A DMediaControlView2Impl.java1704 TextView textView = (TextView) row.findViewById(R.id.text);
1707 textView.setText(mTexts.get(position));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java1826 ConfirmDialogListener(SmsTracker tracker, TextView textView, int confirmationType) { argument
1828 mRememberUndoInstruction = textView;
/frameworks/support/media-widget/src/main/java/androidx/media/widget/
H A DMediaControlView2.java1832 TextView textView = (TextView) row.findViewById(R.id.text);
1835 textView.setText(mTexts.get(position));

Completed in 550 milliseconds

123456