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

<<11121314151617181920>>

  /packages/apps/Camera/src/com/android/camera/ui/
InLineSettingItem.java 26 import android.widget.TextView;
54 ((TextView) findViewById(R.id.title)).setText(preference.getTitle());
  /packages/apps/Email/src/com/android/email/activity/
MessageListItemCoordinates.java 30 import android.widget.TextView;
216 private static int getLineCount(TextView textView) {
217 return textView.getHeight() / textView.getLineHeight();
272 TextView senders = (TextView) view.findViewById(R.id.senders);
280 TextView subject = (TextView) view.findViewById(R.id.subject);
294 TextView date = (TextView) view.findViewById(R.id.date)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ActionMenuButton.java 27 import android.widget.TextView;
30 * TextView that draws a bubble behind the text. We cannot use a
32 * and TextView's clip is too aggressive.
34 public class ActionMenuButton extends TextView {
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 27 import android.widget.TextView;
55 ((TextView) convertView.findViewById(R.id.text)).setText(item.text);
  /cts/tests/tests/widget/src/android/widget/cts/
TwoLineListItemTest.java 32 import android.widget.TextView;
141 TextView text1 = new TextView(mActivity);
143 TextView text2 = new TextView(mActivity);
TableRowTest.java 34 import android.widget.TextView;
95 tableRow.addView(new TextView(mContext));
103 tableRow.addView(new TextView(mContext));
125 ((TextView) tableRow.getVirtualChildAt(0)).getText().toString());
127 ((TextView) tableRow.getVirtualChildAt(1)).getText().toString());
129 ((TextView) tableRow.getVirtualChildAt(2)).getText().toString());
137 ((TextView) tableRow.getVirtualChildAt(1)).getText().toString());
139 ((TextView) tableRow.getVirtualChildAt(2)).getText().toString());
141 ((TextView) tableRow.getVirtualChildAt(3)).getText().toString());
143 ((TextView) tableRow.getVirtualChildAt(4)).getText().toString())
    [all...]
LinearLayoutTest.java 32 import android.widget.TextView;
213 TextView weight02 = (TextView) mActivity.findViewById(R.id.weight_0_2);
214 TextView weight05 = (TextView) mActivity.findViewById(R.id.weight_0_5);
215 TextView weight03 = (TextView) mActivity.findViewById(R.id.weight_0_3);
364 TextView topView = (TextView) mActivity.findViewById(R.id.gravity_top);
365 TextView centerView = (TextView) mActivity.findViewById(R.id.gravity_center_vertical)
    [all...]
CursorAdapterTest.java 36 import android.widget.TextView;
245 TextView textView = new TextView(mContext);
246 textView.setText("getView test");
252 cursorAdapter.getView(0, textView, mParent);
259 cursorAdapter.getView(100, textView, mParent);
265 TextView retView = (TextView) cursorAdapter.getView(0, null, mParent);
270 retView = (TextView) cursorAdapter.getView(1, textView, mParent)
    [all...]
  /development/apps/Development/src/com/android/development/
AppPicker.java 37 import android.widget.TextView;
118 TextView name = (TextView)view.findViewById(R.id.name);
119 TextView description = (TextView)view.findViewById(R.id.description);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsMessagingDemo.java 40 import android.widget.TextView;
61 ((TextView) findViewById(R.id.sms_recipient)).setText(getIntent().getExtras()
63 ((TextView) findViewById(R.id.sms_content)).requestFocus();
92 final TextView statusView = (TextView) SmsMessagingDemo.this.findViewById(R.id.sms_status);
  /development/samples/Obb/src/com/example/android/obbapp/
ObbMountActivity.java 28 import android.widget.TextView;
43 private TextView mStatus;
44 private TextView mPath;
61 mStatus = (TextView) findViewById(R.id.status);
62 mPath = (TextView) findViewById(R.id.path);
  /frameworks/base/core/tests/coretests/src/android/view/
VisibilityCallbackTest.java 25 import android.widget.TextView;
33 private TextView mRefUp;
34 private TextView mRefDown;
50 mRefUp = (TextView) a.findViewById(R.id.refUp);
51 mRefDown = (TextView) a.findViewById(R.id.refDown);
ListContextMenu.java 35 import android.widget.TextView;
74 TextView view;
77 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
79 view = (TextView) convertView;
134 String text = ((TextView) info.targetView).getText().toString();
141 TextView textView = new TextView(this);
142 textView.setText("This is a test of a custom View");
143 menu.setHeaderView(textView);
    [all...]
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
CameraBrowser.java 32 import android.widget.TextView;
81 TextView textView1 = (TextView)view.findViewById(android.R.id.text1);
82 TextView textView2 = (TextView)view.findViewById(android.R.id.text2);
  /packages/apps/Browser/src/com/android/browser/
BookmarkItem.java 28 import android.widget.TextView;
37 protected TextView mTextView;
38 protected TextView mUrlText;
56 mTextView = (TextView) findViewById(R.id.title);
57 mUrlText = (TextView) findViewById(R.id.url);
BrowserBookmarksAdapter.java 29 import android.widget.TextView;
63 TextView tv = (TextView) view.findViewById(R.id.label);
90 TextView tv = (TextView) view.findViewById(R.id.label);
  /packages/apps/Camera/src/com/android/camera/
OnScreenHint.java 26 import android.widget.TextView;
113 TextView tv = (TextView) v.findViewById(R.id.message);
131 TextView tv = (TextView) mNextView.findViewById(R.id.message);
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 33 import android.widget.TextView;
92 TextView name = (TextView) findViewById(R.id.aggregation_suggestion_name);
95 TextView data = (TextView) findViewById(R.id.aggregation_suggestion_data);
RawContactReadOnlyEditorView.java 46 import android.widget.TextView;
59 private TextView mName;
65 private TextView mAccountTypeTextView;
66 private TextView mAccountNameTextView;
101 mName = (TextView) findViewById(R.id.read_only_name);
108 mAccountTypeTextView = (TextView) findViewById(R.id.account_type);
109 mAccountNameTextView = (TextView) findViewById(R.id.account_name);
262 final TextView titleView = (TextView) field.findViewById(R.id.kind_title);
270 final TextView dataView = (TextView) field.findViewById(R.id.data)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
PinnedHeaderListDemoActivity.java 30 import android.widget.TextView;
62 TextView headerText = (TextView)view.findViewById(R.id.header_text);
75 TextView text = (TextView)v.findViewById(android.R.id.text1);
  /packages/apps/Mms/src/com/android/mms/ui/
SlideListItemView.java 34 import android.widget.TextView;
45 private TextView mTextPreview;
47 private TextView mAttachmentName;
60 mTextPreview = (TextView) findViewById(R.id.text_preview);
63 mAttachmentName = (TextView) findViewById(R.id.attachment_name);
  /packages/apps/Phone/tests/src/com/android/phone/tests/
OtaspTestActivity.java 28 import android.widget.TextView;
45 private TextView mLabel;
47 private TextView mResult;
64 mLabel = (TextView) findViewById(R.id.label1);
68 mResult = (TextView) findViewById(R.id.result1);
  /cts/tests/tests/text/src/android/text/method/cts/
ScrollingMovementMethodTest.java 39 import android.widget.TextView;
40 import android.widget.TextView.BufferType;
57 private TextView mTextView;
70 mTextView = new TextView(getActivity());
102 args = {TextView.class, Spannable.class, MotionEvent.class}
108 * All these assertions depends on whether the TextView has a layout.The text view will not
216 args = {TextView.class, Spannable.class, MotionEvent.class}
222 * All these assertions depends on whether the TextView has a layout.The text view will not
327 args = {TextView.class, Spannable.class, MotionEvent.class}
331 + "ScrollingMovementMethod#onTouchEvent(TextView, Spannable, MotionEvent)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaAdapter.java 34 import android.widget.TextView;
69 TextView title;
70 TextView when;
71 TextView where;
119 holder.title = (TextView) view.findViewById(R.id.title);
120 holder.when = (TextView) view.findViewById(R.id.when);
121 holder.where = (TextView) view.findViewById(R.id.where);
170 TextView title = holder.title;
171 TextView when = holder.when;
172 TextView where = holder.where
    [all...]
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientAlternatesAdapter.java 32 import android.widget.TextView;
164 TextView display = (TextView) view.findViewById(android.R.id.title);
178 TextView destination = (TextView) view.findViewById(android.R.id.text1);
181 TextView destinationType = (TextView) view.findViewById(android.R.id.text2);

Completed in 1806 milliseconds

<<11121314151617181920>>