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

1 2 3 4 5 6 78 91011>>

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
CorpusView.java 28 import android.widget.TextView;
37 private TextView mLabel;
56 mLabel = (TextView) findViewById(R.id.source_label);
BaseSuggestionView.java 28 import android.widget.TextView;
35 protected TextView mText1;
36 protected TextView mText2;
57 mText1 = (TextView) findViewById(R.id.text1);
58 mText2 = (TextView) findViewById(R.id.text2);
  /packages/apps/Settings/src/com/android/settings/
IconPreferenceScreen.java 26 import android.widget.TextView;
54 TextView textView = (TextView) view.findViewById(android.R.id.title);
ProgressCategory.java 23 import android.widget.TextView;
39 final TextView scanning = (TextView) view.findViewById(R.id.scanning_text);
SetFullBackupPassword.java 28 import android.widget.TextView;
35 TextView mCurrentPw, mNewPw, mConfirmNewPw;
87 mCurrentPw = (TextView) findViewById(R.id.current_backup_pw);
88 mNewPw = (TextView) findViewById(R.id.new_backup_pw);
89 mConfirmNewPw = (TextView) findViewById(R.id.confirm_new_backup_pw);
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerGaugePreference.java 24 import android.widget.TextView;
62 final TextView text1 = (TextView) view.findViewById(android.R.id.text1);
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnDialog.java 36 import android.widget.TextView;
50 private TextView mName;
52 private TextView mServer;
53 private TextView mUsername;
54 private TextView mPassword;
55 private TextView mSearchDomains;
56 private TextView mDnsServers;
57 private TextView mRoutes;
59 private TextView mL2tpSecret;
60 private TextView mIpsecIdentifier
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TabHost_TabSpecTest.java 40 import android.widget.TextView;
79 TextView tvTitle = (TextView) currentTabView.findViewById(idTitle);
88 tvTitle = (TextView) currentTabView.findViewById(idTitle);
110 TextView tvTitle = (TextView) currentTabView.findViewById(idTitle);
122 tvTitle = (TextView) currentTabView.findViewById(idTitle);
133 tvTitle = (TextView) currentTabView.findViewById(idTitle);
144 tvTitle = (TextView) currentTabView.findViewById(idTitle);
159 // TabContentFactory to create a TextView as the content of the tab
    [all...]
SimpleExpandableListAdapterTest.java 34 import android.widget.TextView;
227 assertTrue(result instanceof TextView);
228 assertEquals("child00", ((TextView) result.findViewById(R.id.text1)).getText().toString());
231 assertTrue(result instanceof TextView);
232 assertEquals("child30", ((TextView) result.findViewById(R.id.text1)).getText().toString());
242 assertTrue(result instanceof TextView);
243 assertEquals("child00", ((TextView) result.findViewById(R.id.text1)).getText().toString());
247 assertEquals("child30", ((TextView) result.findViewById(R.id.text1)).getText().toString());
250 View convertView = new TextView(mContext);
254 assertEquals("child20", ((TextView) result).getText().toString())
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
RecentApplicationsDialog.java 40 import android.widget.TextView;
54 final TextView[] mIcons = new TextView[NUM_BUTTONS];
67 for (TextView icon: mIcons) {
110 mIcons[0] = (TextView)findViewById(com.android.internal.R.id.button0);
111 mIcons[1] = (TextView)findViewById(com.android.internal.R.id.button1);
112 mIcons[2] = (TextView)findViewById(com.android.internal.R.id.button2);
113 mIcons[3] = (TextView)findViewById(com.android.internal.R.id.button3);
114 mIcons[4] = (TextView)findViewById(com.android.internal.R.id.button4);
115 mIcons[5] = (TextView)findViewById(com.android.internal.R.id.button5)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List6.java 27 import android.widget.TextView;
375 mTitle = new TextView(context);
379 mDialogue = new TextView(context);
407 private TextView mTitle;
408 private TextView mDialogue;
ExpandableList1.java 31 import android.widget.TextView;
65 String title = ((TextView) info.targetView).getText().toString();
111 public TextView getGenericView() {
116 TextView textView = new TextView(ExpandableList1.this);
117 textView.setLayoutParams(lp);
119 textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);
121 textView.setPadding(36, 0, 0, 0);
122 return textView;
    [all...]
  /development/samples/JetBoy/src/com/example/android/jetboy/
JetBoy.java 30 import android.widget.TextView;
47 private TextView mTextView;
50 private TextView mTimerView;
74 mTextView = (TextView)findViewById(R.id.text);
75 mTimerView = (TextView)findViewById(R.id.timer);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
WordActivity.java 32 import android.widget.TextView;
56 TextView word = (TextView) findViewById(R.id.word);
57 TextView definition = (TextView) findViewById(R.id.definition);
  /external/replicaisland/src/com/replica/replicaisland/
SliderPreference.java 22 import android.widget.TextView;
67 TextView minText = (TextView)view.findViewById(R.id.min);
72 TextView maxText = (TextView)view.findViewById(R.id.max);
  /packages/apps/Contacts/src/com/android/contacts/
ContactListEmptyView.java 30 import android.widget.TextView;
44 TextView empty = (TextView) findViewById(R.id.emptyText);
55 TextView empty = (TextView) findViewById(R.id.emptyText);
  /packages/apps/Contacts/src/com/android/contacts/util/
AccountsListAdapter.java 31 import android.widget.TextView;
89 final TextView text1 = (TextView) resultView.findViewById(android.R.id.text1);
90 final TextView text2 = (TextView) resultView.findViewById(android.R.id.text2);
  /packages/apps/Contacts/tests/src/com/android/contacts/detail/
ContactDetailDisplayUtilsTest.java 30 import android.widget.TextView;
73 TextView textView = (TextView) parent.findViewById(textViewId);
74 assertNotNull(textView);
75 assertEquals(View.VISIBLE, textView.getVisibility());
76 assertEquals(expectedText, textView.getText().toString());
81 TextView textView = (TextView) parent.findViewById(textViewId)
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
SelectAccountDialogFragment.java 30 import android.widget.TextView;
61 final TextView text1 = (TextView)resultView.findViewById(android.R.id.text1);
62 final TextView text2 = (TextView)resultView.findViewById(android.R.id.text2);
  /packages/apps/Email/src/com/android/email/activity/
MailboxListItem.java 28 import android.widget.TextView;
53 private TextView mLabelName;
54 private TextView mLabelCount;
85 mLabelName = (TextView)findViewById(R.id.mailbox_name);
86 mLabelCount = (TextView)findViewById(R.id.message_count);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
CheckBoxAndSettingsPreference.java 29 import android.widget.TextView;
35 private TextView mTitleText;
36 private TextView mSummaryText;
59 mTitleText = (TextView)view.findViewById(android.R.id.title);
60 mSummaryText = (TextView)view.findViewById(android.R.id.summary);
  /packages/apps/Tag/src/com/android/apps/tag/
TagViewer.java 35 import android.widget.TextView;
86 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false);
97 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimatorEvents.java 24 import android.widget.TextView;
50 TextView startText, repeatText, cancelText, endText;
51 TextView startTextAnimator, repeatTextAnimator, cancelTextAnimator, endTextAnimator;
60 startText = (TextView) findViewById(R.id.startText);
62 repeatText = (TextView) findViewById(R.id.repeatText);
64 cancelText = (TextView) findViewById(R.id.cancelText);
66 endText = (TextView) findViewById(R.id.endText);
68 startTextAnimator = (TextView) findViewById(R.id.startTextAnimator);
70 repeatTextAnimator = (TextView) findViewById(R.id.repeatTextAnimator);
72 cancelTextAnimator = (TextView) findViewById(R.id.cancelTextAnimator)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/media/
AudioFxDemo.java 40 import android.widget.TextView;
55 private TextView mStatusTextView;
63 mStatusTextView = new TextView(this);
101 TextView eqTextView = new TextView(this);
113 TextView freqTextView = new TextView(this);
124 TextView minDbTextView = new TextView(this);
130 TextView maxDbTextView = new TextView(this)
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorLEDController.java 13 import android.widget.TextView;
24 private TextView mTarget;
27 LedValueUpdater(TextView target, int colorIndex) {
80 TextView label = (TextView) g.getChildAt(0);
82 TextView valueText = (TextView) g.getChildAt(2);

Completed in 1200 milliseconds

1 2 3 4 5 6 78 91011>>