HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 351 - 375 of 1057) sorted by null

<<11121314151617181920>>

  /frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
ManageDialog.java 34 import android.widget.TextView;
50 private TextView mDuration;
51 private TextView mDataTransmitted;
52 private TextView mDataReceived;
75 ((TextView) view.findViewById(R.id.session)).setText(mConfig.session);
77 mDuration = (TextView) view.findViewById(R.id.duration);
78 mDataTransmitted = (TextView) view.findViewById(R.id.data_transmitted);
79 mDataReceived = (TextView) view.findViewById(R.id.data_received);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
StackActivity.java 28 import android.widget.TextView;
53 ((TextView) item.findViewById(R.id.mini_text)).setText("" + position);
  /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/Launcher2/src/com/android/launcher2/
PagedViewIcon.java 22 import android.widget.TextView;
28 public class PagedViewIcon extends TextView {
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
InLineSettingItem.java 26 import android.widget.TextView;
54 ((TextView) findViewById(R.id.title)).setText(preference.getTitle());
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 27 import android.widget.TextView;
55 ((TextView) convertView.findViewById(R.id.text)).setText(item.text);
  /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);
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiChatFragment.java 13 import android.widget.TextView;
26 private TextView chatLine;
35 chatLine = (TextView) view.findViewById(R.id.txtChatLine);
92 TextView nameText = (TextView) v
  /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);
  /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);
  /frameworks/base/tests/SerialChat/src/com/android/serialchat/
SerialChat.java 32 import android.widget.TextView;
37 public class SerialChat extends Activity implements Runnable, TextView.OnEditorActionListener {
41 private TextView mLog;
57 mLog = (TextView)findViewById(R.id.log);
105 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
  /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);
  /packages/apps/Camera/src/com/android/camera/
OnScreenHint.java 26 import android.widget.TextView;
110 TextView tv = (TextView) v.findViewById(R.id.message);
128 TextView tv = (TextView) mNextView.findViewById(R.id.message);
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 26 import android.widget.TextView;
92 TextView name = (TextView) findViewById(R.id.aggregation_suggestion_name);
95 TextView data = (TextView) findViewById(R.id.aggregation_suggestion_data);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilterView.java 26 import android.widget.TextView;
40 private TextView mAccountType;
41 private TextView mAccountUserName;
82 mAccountType = (TextView) findViewById(R.id.accountType);
83 mAccountUserName = (TextView) findViewById(R.id.accountUserName);
  /packages/apps/Contacts/src/com/android/contacts/widget/
PinnedHeaderListDemoActivity.java 28 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/DeskClock/src/com/android/deskclock/
CircleButtonsLinearLayout.java 8 import android.widget.TextView;
27 private TextView mStop;
29 private TextView mLabelText;
80 mStop = (TextView) findViewById(mStopButtonId);
82 mLabelText = (TextView) findViewById(mLabelTextId);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
ActionableToastBar.java 29 import android.widget.TextView;
52 private TextView mActionDescriptionView;
54 private TextView mActionText;
77 mActionDescriptionView = (TextView) findViewById(R.id.description_text);
80 mActionText = (TextView) findViewById(R.id.action_text);
  /packages/apps/LegacyCamera/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/Mms/src/com/android/mms/ui/
RecipientListActivity.java 38 import android.widget.TextView;
132 final TextView nameView = (TextView)listItemView.findViewById(R.id.name);
133 final TextView numberView = (TextView)listItemView.findViewById(R.id.number);
SlideListItemView.java 35 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);
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
MainActivity.java 28 import android.widget.TextView;
49 private TextView mTextError;
50 private TextView mTextStatus;
58 mTextError = (TextView) findViewById(R.id.textError);
59 mTextStatus = (TextView) findViewById(R.id.textStatus);
  /sdk/testapps/testSensors/src/com/android/tests/testsensors/
TestSensorsActivity.java 31 import android.widget.TextView;
47 private final TextView mName;
49 private final TextView mVal;
50 /** Formats string to show in the TextView. */
68 mName = (TextView) row.findViewById(R.id.row_textview_name);
71 mVal = (TextView) row.findViewById(R.id.row_textview_value);

Completed in 1177 milliseconds

<<11121314151617181920>>