HomeSort by relevance Sort by last modified time
    Searched defs:textView (Results 76 - 95 of 95) sorted by null

1 2 34

  /cts/tests/tests/widget/src/android/widget/cts/
CursorAdapterTest.java 36 import android.widget.TextView;
182 TextView textView = new TextView(mContext);
183 textView.setText("getView test");
189 cursorAdapter.getView(0, textView, mParent);
196 cursorAdapter.getView(100, textView, mParent);
202 TextView retView = (TextView) cursorAdapter.getView(0, null, mParent);
207 retView = (TextView) cursorAdapter.getView(1, textView, mParent)
    [all...]
CursorTreeAdapterTest.java 32 import android.widget.TextView;
419 TextView retView;
420 TextView textView = new TextView(mContext);
421 textView.setText(expectedStr);
427 adapter.getGroupView(0, true, textView, mParent);
436 adapter.getGroupView(10, true, textView, mParent);
442 retView = (TextView) adapter.getGroupView(1, true, null, mParent);
447 retView = (TextView) adapter.getGroupView(0, true, textView, mParent)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
ViewLoaderTest.java 70 TextView textView = (TextView) view.findViewById(android.R.id.text1);
71 assertThat(textView.getText().toString(), equalTo("default"));
78 TextView textView = (TextView) view.findViewById(android.R.id.text1);
79 assertThat(textView.getText().toString(), equalTo("xlarge"));
86 TextView textView = (TextView) view.findViewById(android.R.id.text1)
    [all...]
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EnvReverbTest.java 30 import android.widget.TextView;
58 TextView mSendLevelDisplay;
72 TextView textView;
78 textView = (TextView) findViewById(R.id.sessionText);
81 R.id.stop1, stop, textView,
85 R.id.stop1, stop, textView,
91 mSendLevelDisplay = (TextView)findViewById(R.id.sendLevelValue);
114 textView = (TextView)findViewById(R.id.rvbParam1Value)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ScrollingTabContainerView.java 36 import android.widget.TextView;
327 private TextView mTextView;
412 TextView textView = new CompatTextView(getContext(), null,
414 textView.setEllipsize(TruncateAt.END);
418 textView.setLayoutParams(lp);
419 addView(textView);
420 mTextView = 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/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 40 import android.widget.TextView;
223 public static void setSocialSnippet(Context context, Contact contactData, TextView statusView,
356 TextView htmlView = (TextView) rootView.findViewById(R.id.stream_item_html);
357 TextView attributionView = (TextView) rootView.findViewById(
359 TextView commentsView = (TextView) rootView.findViewById(R.id.stream_item_comments);
373 * Sets the display name of this contact to the given {@link TextView}. If
376 public static void setDisplayName(Context context, Contact contactData, TextView textView)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
PhotoCaptureActivity.java 42 import android.widget.TextView;
110 TextView textView = (TextView) findViewById(R.id.camera_fov_tap_to_take_photo);
111 textView.setTextColor(Color.WHITE);
  /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/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 44 import android.widget.TextView;
365 private TextView mTextView;
463 TextView textView = new TextView(getContext(), null,
465 textView.setEllipsize(TruncateAt.END);
469 textView.setLayoutParams(lp);
470 addView(textView);
471 mTextView = textView;
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 42 import android.widget.TextView;
294 TextView textView = (TextView) view.findViewById(id);
295 textView.setText(text);
  /packages/apps/Settings/src/com/android/settings/
KeyguardAppWidgetPickActivity.java 53 import android.widget.TextView;
485 TextView textView = (TextView) convertView.findViewById(R.id.label);
486 textView.setText(item.label);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidatesViewManager.java 54 import android.widget.TextView;
101 private TextView mViewTabSymbol;
103 private TextView mViewTabEmoticon;
185 private TextView mViewCandidateTemplate;
191 private TextView mFullViewPrevView;
201 /** List of textView for CandiData List 1st for Symbol mode */
202 private ArrayList<TextView> mTextViewArray1st = new ArrayList<TextView>();
203 /** List of textView for CandiData List 2st for Symbol mode */
204 private ArrayList<TextView> mTextViewArray2nd = new ArrayList<TextView>()
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventInfoFragment.java 93 import android.widget.TextView;
351 private TextView mTitle;
352 private TextView mWhenDateTime;
353 private TextView mWhere;
    [all...]
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 129 .childSelector(new UiSelector().className(android.widget.TextView.class
287 android.widget.TextView.class.getName()).instance(1));
329 UiObject textView = new UiObject(new UiSelector().textContains("["));
331 textView.swipeLeft(10);
332 assertTrue("UiObject swipe left 1->2", "[ 2 ]".equals(textView.getText()));
334 textView.swipeLeft(10);
335 assertTrue("UiObject swipe left 2->3", "[ 3 ]".equals(textView.getText()));
337 textView.swipeLeft(10);
338 assertTrue("UiObject swipe left 3->4", "[ 4 ]".equals(textView.getText()));
340 textView.swipeRight(10)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListItemView.java 45 import android.widget.TextView;
141 private TextView mHeaderTextView;
147 private TextView mNameTextView;
148 private TextView mPhoneticNameTextView;
149 private TextView mLabelView;
150 private TextView mDataView;
151 private TextView mSnippetView;
152 private TextView mStatusView;
153 private TextView mCountView;
199 // TODO: some TextView fields are using CharArrayBuffer while some are not. Determine which i
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 118 import android.widget.TextView;
168 implements View.OnClickListener, TextView.OnEditorActionListener,
270 private TextView mTextCounter; // Shows the number of characters used in text editor
271 private TextView mSendButtonMms; // Press to send mms
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 142 * Displays text to the user and optionally allows them to edit it. A TextView
148 * To allow users to copy some or all of the TextView's value and paste it somewhere else, set the
152 * allows users to make selection gestures in the TextView, which in turn triggers the system's
157 * See {@link android.R.styleable#TextView TextView Attributes},
226 public class TextView extends View implements ViewTreeObserver.OnPreDrawListener {
227 static final String LOG_TAG = "TextView";
272 // New state used to change background based on whether this TextView is multiline.
398 public void setErrorDrawable(Drawable dr, TextView tv) {
560 // they are defined by the TextView's style and are theme-dependent
    [all...]
Editor.java 95 import android.widget.TextView.Drawables;
96 import android.widget.TextView.OnEditorActionListener;
104 * Helper class used by TextView to handle editable text views.
152 * This flag is set if the TextView tries to display an error before it
175 // Global listener that detects changes in the global position of the TextView
181 // Set when this TextView gained focus with some text selected. Will start selection mode.
191 private TextView mTextView;
195 Editor(TextView textView) {
196 mTextView = textView;
    [all...]
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 

Completed in 632 milliseconds

1 2 34