HomeSort by relevance Sort by last modified time
    Searched refs:textView (Results 251 - 275 of 371) sorted by null

<<1112131415

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
aboutDialog.py 8 from idlelib import textView
129 textView.view_text(self, title, text)
133 textView.view_file(self, title, fn, encoding)
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
BaseContentFragment.java 34 import android.widget.TextView;
180 public TextView getTitle() {
182 return (TextView) mFragment.getView().findViewById(R.id.title);
201 public TextView getBreadCrumb() {
203 return (TextView) mFragment.getView().findViewById(R.id.breadcrumb);
206 public TextView getDescription() {
208 return (TextView) mFragment.getView().findViewById(R.id.description);
223 TextView textView = (TextView) parent.findViewById(textViewResourceId)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 45 import android.widget.TextView;
481 TextView textView = (TextView) mSelectionContainer.findViewById(R.id.selection_count_text);
483 textView.setVisibility(View.GONE);
485 textView.setVisibility(View.VISIBLE);
487 textView.setText(String.valueOf(selectionCount));
491 final TextView textView =
492 (TextView) mSelectionContainer.findViewById(R.id.selection_count_text)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
LabeledEditorView.java 45 import android.widget.TextView;
600 final TextView view = createViewFromResource(
625 private TextView createViewFromResource(int position, View convertView, ViewGroup parent,
627 TextView textView;
630 textView = (TextView) mInflater.inflate(resource, parent, false);
631 textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, getResources().getDimension(
633 textView.setTextColor(mTextColorDark);
635 textView = (TextView) convertView
    [all...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
Calculator.java 72 import android.widget.TextView;
132 private final Property<TextView, Integer> TEXT_COLOR =
133 new Property<TextView, Integer>(Integer.class, "textColor") {
135 public Integer get(TextView textView) {
136 return textView.getCurrentTextColor();
140 public void set(TextView textView, Integer textColor) {
141 textView.setTextColor(textColor);
251 private TextView mModeView
    [all...]
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
VisualizerTest.java 37 import android.widget.TextView;
71 TextView textView;
245 TextView textView = (TextView)findViewById(viewId);
247 textView.setText(text);
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
MainActivity.java 18 import android.widget.TextView;
157 public TextView mTextView;
176 mTextView = new TextView(context);
201 TextView textView;
217 textView = params[0].mTextView;
242 textView.setText(buffer.toString());
  /packages/apps/TV/src/com/android/tv/dvr/ui/
DetailsContentPresenter.java 33 import android.widget.TextView;
52 final TextView mTitle;
53 final TextView mSubtitle;
55 final TextView mBody;
56 final TextView mReadMoreView;
116 mTitle = (TextView) view.findViewById(R.id.dvr_details_description_title);
117 mSubtitle = (TextView) view.findViewById(R.id.dvr_details_description_subtitle);
118 mBody = (TextView) view.findViewById(R.id.dvr_details_description_body);
121 mReadMoreView = (TextView) view.findViewById(R.id.dvr_details_description_read_more);
164 public TextView getTitle()
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/list/
SchedulesHeaderRowPresenter.java 29 import android.widget.TextView;
61 private TextView mTitle;
62 private TextView mDescription;
67 mTitle = (TextView) view.findViewById(R.id.header_title);
68 mDescription = (TextView) view.findViewById(R.id.header_description);
184 private void setTextDrawable(TextView textView, Drawable drawableStart) {
186 textView.setCompoundDrawablesWithIntrinsicBounds(drawableStart, null, null, null);
188 textView.setCompoundDrawablesWithIntrinsicBounds(null, null, drawableStart, null);
196 private final TextView mSeriesSettingsButton
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java 39 import android.widget.TextView;
486 TextView textView = (TextView) view;
487 textView.setText(mLabel);
495 private TextView mContentView;
508 TextView textView = (TextView) view.findViewById(R.id.label);
509 textView.setText(mLabel)
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
RestrictedLockUtils.java 43 import android.widget.TextView;
692 TextView textView, boolean showPadlock) {
693 final SpannableStringBuilder sb = new SpannableStringBuilder(textView.getText());
699 textView.setText(sb);
703 * Takes a {@link android.widget.TextView} and applies an alpha so that the text looks like
705 * ForegroundColorSpans and RestrictedLockImageSpans used on the TextView.
708 TextView textView, boolean disabled) {
709 final SpannableStringBuilder sb = new SpannableStringBuilder(textView.getText())
    [all...]
  /frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
MainActivityTest.java 27 mTextView = mActivity.findViewById(R.id.textView);
75 assertEquals("android.widget.TextView",
  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 52 import android.widget.TextView;
78 // TextView shown at the top of each type of attendees
148 final TextView textView =
149 (TextView)mInflater.inflate(R.layout.event_info_label, this, false);
150 textView.setText(label);
151 textView.setClickable(false);
152 return textView;
159 ((TextView)divider).setText(label);
162 ((TextView)divider).setText(label + " (" + count + ")")
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java 45 import android.widget.TextView;
58 View.OnLongClickListener, DropTarget, FolderListener, TextView.OnEditorActionListener,
223 mIconDrawable = ((TextView) v).getCompoundDrawables()[1];
272 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
522 final TextView textView =
523 (TextView) mInflater.inflate(R.layout.application, this, false);
524 textView.setCompoundDrawablesWithIntrinsicBounds(null,
526 textView.setText(item.title);
528 textView.setContentDescription(item.contentDescription)
    [all...]
  /cts/tests/fragment/src/android/fragment/cts/
LoaderTest.java 100 assertEquals("Loaded!", activity.textView.getText().toString());
105 assertEquals("Loaded!", activity.textView.getText().toString());