HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 101 - 125 of 864) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/text/method/
ArrowKeyMovementMethod.java 26 import android.widget.TextView;
42 private static int getPageHeight(TextView widget) {
51 protected boolean handleMovementKey(TextView widget, Spannable buffer, int keyCode,
69 protected boolean left(TextView widget, Spannable buffer) {
79 protected boolean right(TextView widget, Spannable buffer) {
89 protected boolean up(TextView widget, Spannable buffer) {
99 protected boolean down(TextView widget, Spannable buffer) {
109 protected boolean pageUp(TextView widget, Spannable buffer) {
133 protected boolean pageDown(TextView widget, Spannable buffer) {
157 protected boolean top(TextView widget, Spannable buffer)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisible.java 26 import android.widget.TextView;
46 final TextView topBlob = (TextView) findViewById(R.id.topBlob);
47 final TextView bottomBlob = (TextView) findViewById(R.id.bottomBlob);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BatteryController.java 28 import android.widget.TextView;
37 private ArrayList<TextView> mLabelViews = new ArrayList<TextView>();
51 public void addLabelView(TextView v) {
72 TextView v = mLabelViews.get(i);
  /frameworks/ex/chips/src/com/android/ex/chips/
SingleRecipientArrayAdapter.java 26 import android.widget.TextView;
55 TextView display = (TextView) view.findViewById(android.R.id.title);
60 TextView destination = (TextView) view.findViewById(android.R.id.text1);
  /packages/apps/Calculator/src/com/android/calculator2/
HistoryAdapter.java 24 import android.widget.TextView;
70 TextView expr = (TextView) view.findViewById(R.id.historyExpr);
71 TextView result = (TextView) view.findViewById(R.id.historyResult);
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogListItemViews.java 26 import android.widget.TextView;
43 public final TextView listHeaderTextView;
50 TextView listHeaderTextView, View bottomDivider) {
67 (TextView) view.findViewById(R.id.call_log_header),
78 new TextView(context),
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportListItem.java 28 import android.widget.TextView;
35 private TextView mRecipientView;
36 private TextView mStatusView;
47 mRecipientView = (TextView) findViewById(R.id.recipient);
48 mStatusView = (TextView) findViewById(R.id.status);
AudioAttachmentView.java 33 import android.widget.TextView;
45 private TextView mNameView;
46 private TextView mAlbumView;
47 private TextView mArtistView;
48 private TextView mErrorMsgView;
65 mNameView = (TextView) findViewById(R.id.audio_name);
66 mAlbumView = (TextView) findViewById(R.id.album_name);
67 mArtistView = (TextView) findViewById(R.id.artist_name);
68 mErrorMsgView = (TextView) findViewById(R.id.audio_error_msg);
  /cts/tests/src/android/widget/cts/util/
ListItemFactory.java 26 import android.widget.TextView;
62 final TextView middleFiller = new TextView(context);
155 TextView result = new Button(context);
195 TextView result = new TextView(context);
210 * @param convertView Non-null TextView created by {@link #text}
217 ((TextView) convertView).setText(text);
246 TextView t1 = new TextView(context)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
ListItemFactory.java 26 import android.widget.TextView;
62 final TextView middleFiller = new TextView(context);
156 TextView result = new Button(context);
196 TextView result = new TextView(context);
211 * @param convertView Non-null TextView created by {@link #text}
218 ((TextView) convertView).setText(text);
247 TextView t1 = new TextView(context)
    [all...]
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
ObjectViewer.java 35 import android.widget.TextView;
119 TextView view = (TextView)findViewById(R.id.name);
122 view = (TextView)findViewById(R.id.format);
124 view = (TextView)findViewById(R.id.size);
126 view = (TextView)findViewById(R.id.thumb_width);
128 view = (TextView)findViewById(R.id.thumb_height);
130 view = (TextView)findViewById(R.id.thumb_size);
132 view = (TextView)findViewById(R.id.width);
134 view = (TextView)findViewById(R.id.height)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactTileView.java 30 import android.widget.TextView;
41 private TextView mName;
42 private TextView mStatus;
43 private TextView mPhoneLabel;
44 private TextView mPhoneNumber;
57 mName = (TextView) findViewById(R.id.contact_tile_name);
61 mStatus = (TextView) findViewById(R.id.contact_tile_status);
62 mPhoneLabel = (TextView) findViewById(R.id.contact_tile_phone_type);
63 mPhoneNumber = (TextView) findViewById(R.id.contact_tile_phone_number);
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
IntegrationTestUtils.java 31 import android.widget.TextView;
75 /** Returns the result of running {@link TextView#getText()} on the ui thread. */
76 public CharSequence getText(final TextView view) throws Throwable {
137 * Gets all {@link TextView} objects whose {@link TextView#getText()} contains the given text as
140 public List<TextView> getTextViewsWithString(final Activity activity, final String text)
142 return runOnUiThreadAndGetTheResult(new Callable<List<TextView>>() {
144 public List<TextView> call() throws Exception {
145 List<TextView> matchingViews = new ArrayList<TextView>();
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentHideShow.java 31 import android.widget.TextView;
70 TextView mTextView;
77 ((TextView)tv).setText("The fragment saves and restores this text.");
80 mTextView = (TextView)v.findViewById(R.id.saved);
103 ((TextView)tv).setText("The TextView saves and restores this text.");
109 ((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true);
SaveRestoreState.java 26 import android.widget.TextView;
81 ((TextView)findViewById(R.id.msg)).setText(R.string.save_restore_msg);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentHideShowSupport.java 32 import android.widget.TextView;
71 TextView mTextView;
78 ((TextView)tv).setText("The fragment saves and restores this text.");
81 mTextView = (TextView)v.findViewById(R.id.saved);
104 ((TextView)tv).setText("The TextView saves and restores this text.");
110 ((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true);
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridThrasher.java 31 import android.widget.TextView;
43 TextView mText;
90 TextView view;
93 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
95 view = (TextView) convertView;
118 mText = (TextView) findViewById(R.id.text);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListThrasher.java 30 import android.widget.TextView;
41 TextView mText;
88 TextView view;
91 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
93 view = (TextView) convertView;
115 mText = (TextView) findViewById(R.id.text);
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceDetailFragment.java 37 import android.widget.TextView;
126 TextView statusText = (TextView) mContentView.findViewById(R.id.status_text);
147 TextView view = (TextView) mContentView.findViewById(R.id.group_owner);
153 view = (TextView) mContentView.findViewById(R.id.device_info);
166 ((TextView) mContentView.findViewById(R.id.status_text)).setText(getResources()
182 TextView view = (TextView) mContentView.findViewById(R.id.device_address);
184 view = (TextView) mContentView.findViewById(R.id.device_info)
    [all...]
DeviceListFragment.java 34 import android.widget.TextView;
127 TextView top = (TextView) v.findViewById(R.id.device_name);
128 TextView bottom = (TextView) v.findViewById(R.id.device_details);
149 TextView view = (TextView) mContentView.findViewById(R.id.my_name);
151 view = (TextView) mContentView.findViewById(R.id.my_status);
  /packages/apps/Phone/src/com/android/phone/
ManageConferenceUtils.java 28 import android.widget.TextView;
190 TextView nameTextView = (TextView) mConferenceCallList[i].findViewById(
192 TextView numberTextView = (TextView) mConferenceCallList[i].findViewById(
194 TextView numberTypeTextView = (TextView) mConferenceCallList[i].findViewById(
244 TextView nameTextView,
245 TextView numberTypeTextView,
246 TextView numberTextView)
    [all...]
  /development/apps/Development/src/com/android/development/
Details.java 31 import android.widget.TextView;
87 TextView label = makeView(cd.key, true, 12);
88 TextView contents = makeView(cd.value, false, 12);
95 TextView makeView(String str, boolean bold, int fontSize)
100 TextView v = new TextView(this);
129 TextView error = new TextView(Details.this);
LogTextBox.java 19 import android.widget.TextView;
30 * This is a TextView that is Editable and by default scrollable,
37 * {@link android.R.styleable#TextView TextView Attributes},
40 public class LogTextBox extends TextView {
  /development/samples/ApiDemos/src/com/example/android/apis/text/
LogTextBox.java 19 import android.widget.TextView;
27 * This is a TextView that is Editable and by default scrollable,
34 * {@link android.R.styleable#TextView TextView Attributes},
37 public class LogTextBox extends TextView {
  /development/samples/Snake/src/com/example/android/snake/
Snake.java 22 import android.widget.TextView;
51 mSnakeView.setTextView((TextView) findViewById(R.id.text));

Completed in 1452 milliseconds

1 2 3 45 6 7 8 91011>>