HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 476 - 500 of 2223) sorted by null

<<11121314151617181920>>

  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallDetailHistoryAdapter.java 27 import android.widget.TextView;
103 TextView callTypeTextView = (TextView) result.findViewById(R.id.call_type_text);
104 TextView dateView = (TextView) result.findViewById(R.id.date);
105 TextView durationView = (TextView) result.findViewById(R.id.duration);
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
DragPreviewProvider.java 25 import android.widget.TextView;
53 if (mView instanceof TextView) {
54 Drawable d = Workspace.getTextViewIcon((TextView) mView);
67 if (mView instanceof TextView) {
68 Drawable d = Workspace.getTextViewIcon((TextView) mView);
106 if (mView instanceof TextView) {
107 Drawable d = Workspace.getTextViewIcon((TextView) mView);
  /packages/apps/LegacyCamera/src/com/android/camera/
RotateDialogController.java 29 import android.widget.TextView;
43 private TextView mRotateDialogTitle;
45 private TextView mRotateDialogText;
46 private TextView mRotateDialogButton1;
47 private TextView mRotateDialogButton2;
65 mRotateDialogTitle = (TextView) v.findViewById(R.id.rotate_dialog_title);
67 mRotateDialogText = (TextView) v.findViewById(R.id.rotate_dialog_text);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
ProgressDialogFragment.java 31 import android.widget.TextView;
38 private TextView mTitleView;
39 private TextView mExtraTextView;
40 private TextView mSummaryView;
51 mTitleView = (TextView) view.findViewById(android.R.id.title);
52 mExtraTextView = (TextView) view.findViewById(R.id.extra);
53 mSummaryView = (TextView) view.findViewById(android.R.id.summary);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
EditTextFragment.java 28 import android.widget.TextView;
35 implements TextWatcher, TextView.OnEditorActionListener {
43 private TextView.OnEditorActionListener mEditorActionListener = null;
81 public void setOnEditorActionListener(TextView.OnEditorActionListener listener) {
98 TextView description = (TextView) view.findViewById(R.id.description);
143 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderItemView.java 27 import android.widget.TextView;
45 private TextView mFolderTextView;
46 private TextView mUnreadCountTextView;
47 private TextView mUnseenCountTextView;
84 mFolderTextView = (TextView)findViewById(R.id.name);
85 mUnreadCountTextView = (TextView)findViewById(R.id.unread);
86 mUnseenCountTextView = (TextView)findViewById(R.id.unseen);
141 * Sets the unread count, taking care to hide/show the textview if the count is zero/non-zero.
151 * Sets the unseen count, taking care to hide/show the textview if the count is zero/non-zero.
  /packages/experimental/NotificationLog/src/com/android/notificationlog/
NotificationLogActivity.java 20 import android.widget.TextView;
84 TextView title = (TextView)view.findViewById(R.id.title);
85 TextView more = (TextView)view.findViewById(R.id.text);
86 TextView time = (TextView)view.findViewById(R.id.time);
  /development/apps/Development/src/com/android/development/
PackageSummary.java 39 import android.widget.TextView;
44 private TextView mPackage;
46 private TextView mClass;
47 private TextView mLabel;
54 private TextView mTask;
55 private TextView mVersion;
56 private TextView mProcess;
57 private TextView mUid;
58 private TextView mSource;
59 private TextView mData
    [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...]
  /cts/tests/tests/widget/src/android/widget/cts/
CursorAdapterTest.java 38 import android.widget.TextView;
192 TextView textView = new TextView(mContext);
193 textView.setText("getView test");
199 cursorAdapter.getView(0, textView, mParent);
206 cursorAdapter.getView(100, textView, mParent);
212 TextView retView = (TextView) cursorAdapter.getView(0, null, mParent);
217 retView = (TextView) cursorAdapter.getView(1, textView, mParent)
    [all...]
TableRowTest.java 34 import android.widget.TextView;
69 tableRow.addView(new TextView(mContext));
77 tableRow.addView(new TextView(mContext));
93 ((TextView) tableRow.getVirtualChildAt(0)).getText().toString());
95 ((TextView) tableRow.getVirtualChildAt(1)).getText().toString());
97 ((TextView) tableRow.getVirtualChildAt(2)).getText().toString());
105 ((TextView) tableRow.getVirtualChildAt(1)).getText().toString());
107 ((TextView) tableRow.getVirtualChildAt(2)).getText().toString());
109 ((TextView) tableRow.getVirtualChildAt(3)).getText().toString());
111 ((TextView) tableRow.getVirtualChildAt(4)).getText().toString())
    [all...]
  /frameworks/base/core/java/android/text/method/
LinkMovementMethod.java 27 import android.widget.TextView;
44 protected boolean handleMovementKey(TextView widget, Spannable buffer, int keyCode,
61 protected boolean up(TextView widget, Spannable buffer) {
70 protected boolean down(TextView widget, Spannable buffer) {
79 protected boolean left(TextView widget, Spannable buffer) {
88 protected boolean right(TextView widget, Spannable buffer) {
96 private boolean action(int what, TextView widget, Spannable buffer) {
194 public boolean onTouchEvent(TextView widget, Spannable buffer,
234 public void initialize(TextView widget, Spannable text) {
240 public void onTakeFocus(TextView view, Spannable text, int dir)
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
ListDocumentHolder.java 33 import android.widget.TextView;
41 final TextView mTitle;
43 final TextView mDate;
44 final TextView mSize;
45 final TextView mSummary;
54 mTitle = (TextView) itemView.findViewById(android.R.id.title);
55 mDate = (TextView) itemView.findViewById(R.id.date);
56 mSize = (TextView) itemView.findViewById(R.id.size);
57 mSummary = (TextView) itemView.findViewById(android.R.id.summary);
138 mTitle.setText(docDisplayName, TextView.BufferType.SPANNABLE)
    [all...]
  /frameworks/support/design/tests/src/android/support/design/testutils/
TestUtilsMatchers.java 35 import android.widget.TextView;
96 return new BoundedMatcher<View, TextView>(TextView.class) {
105 public boolean matchesSafely(final TextView view) {
121 return new BoundedMatcher<View, TextView>(TextView.class) {
130 public boolean matchesSafely(final TextView view) {
163 return new BoundedMatcher<View, TextView>(TextView.class) {
172 public boolean matchesSafely(final TextView view)
    [all...]
  /external/robolectric/v1/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...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityTextActionTest.java 23 import android.widget.TextView;
49 final TextView textView = (TextView) getActivity().findViewById(R.id.text);
54 textView.setVisibility(View.VISIBLE);
55 textView.setText(getString(R.string.a_b));
73 TextUtils.equals(getString(R.string.a_b), textView.getText()));
77 final TextView textView = (TextView) getActivity().findViewById(R.id.text)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentHideShow.java 31 import android.widget.TextView;
76 TextView mTextView;
83 ((TextView)tv).setText("The fragment saves and restores this text.");
86 mTextView = (TextView)v.findViewById(R.id.saved);
109 ((TextView)tv).setText("The TextView saves and restores this text.");
115 ((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true);
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
ContactsExpansion.java 30 import android.widget.TextView;
69 ((TextView)contactItem.findViewById(R.id.contact_name)).setText(contactsData[dataIndex++]);
70 ((TextView)contactItem.findViewById(R.id.contact_street)).
72 ((TextView)contactItem.findViewById(R.id.contact_city)).setText(contactsData[dataIndex++]);
73 ((TextView)contactItem.findViewById(R.id.contact_phone)).setText(contactsData[dataIndex++]);
74 ((TextView)contactItem.findViewById(R.id.contact_email)).setText(contactsData[dataIndex++]);
  /frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
GlifLayoutTest.java 31 import android.widget.TextView;
55 TextView title = (TextView) layout.findViewById(R.id.suw_layout_title);
63 TextView tv = new TextView(mContext);
77 assertTrue("@id/test_content should be a TextView", content instanceof TextView);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
LevelsV4.java 30 import android.widget.TextView;
92 public boolean onBar1Setup(SeekBar b, TextView t) {
97 public boolean onBar2Setup(SeekBar b, TextView t) {
103 public boolean onBar3Setup(SeekBar b, TextView t) {
109 public boolean onBar4Setup(SeekBar b, TextView t) {
115 public boolean onBar5Setup(SeekBar b, TextView t) {
Vignette.java 24 import android.widget.TextView;
44 public boolean onBar1Setup(SeekBar b, TextView t) {
50 public boolean onBar2Setup(SeekBar b, TextView t) {
56 public boolean onBar3Setup(SeekBar b, TextView t) {
62 public boolean onBar4Setup(SeekBar b, TextView t) {
68 public boolean onBar5Setup(SeekBar b, TextView t) {
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
LevelsV4.java 24 import android.widget.TextView;
86 public boolean onBar1Setup(SeekBar b, TextView t) {
91 public boolean onBar2Setup(SeekBar b, TextView t) {
97 public boolean onBar3Setup(SeekBar b, TextView t) {
103 public boolean onBar4Setup(SeekBar b, TextView t) {
109 public boolean onBar5Setup(SeekBar b, TextView t) {
Vignette.java 20 import android.widget.TextView;
40 public boolean onBar1Setup(SeekBar b, TextView t) {
46 public boolean onBar2Setup(SeekBar b, TextView t) {
52 public boolean onBar3Setup(SeekBar b, TextView t) {
58 public boolean onBar4Setup(SeekBar b, TextView t) {
64 public boolean onBar5Setup(SeekBar b, TextView t) {
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
LevelsV4.java 24 import android.widget.TextView;
86 public boolean onBar1Setup(SeekBar b, TextView t) {
91 public boolean onBar2Setup(SeekBar b, TextView t) {
97 public boolean onBar3Setup(SeekBar b, TextView t) {
103 public boolean onBar4Setup(SeekBar b, TextView t) {
109 public boolean onBar5Setup(SeekBar b, TextView t) {
Vignette.java 20 import android.widget.TextView;
40 public boolean onBar1Setup(SeekBar b, TextView t) {
46 public boolean onBar2Setup(SeekBar b, TextView t) {
52 public boolean onBar3Setup(SeekBar b, TextView t) {
58 public boolean onBar4Setup(SeekBar b, TextView t) {
64 public boolean onBar5Setup(SeekBar b, TextView t) {

Completed in 1285 milliseconds

<<11121314151617181920>>