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

<<11121314151617181920>>

  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/
AddVoicemailActivity.java 39 import android.widget.TextView;
74 private TextView mTime;
76 private TextView mProviderPackage;
78 private TextView mMimeType;
80 private TextView mSenderNumber;
82 private TextView mDuration;
  /frameworks/base/core/java/android/accounts/
GrantCredentialsPermissionActivity.java 21 import android.widget.TextView;
92 final TextView authTokenTypeView = (TextView) findViewById(R.id.authtoken_type);
134 ((TextView) findViewById(R.id.account_name)).setText(mAccount.name);
135 ((TextView) findViewById(R.id.account_type)).setText(accountTypeLabel);
140 ((TextView) view.findViewById(R.id.package_label)).setText(packageLabel);
  /frameworks/base/core/java/com/android/internal/widget/
DigitalClock.java 33 import android.widget.TextView;
52 private TextView mTimeDisplayBackground;
53 private TextView mTimeDisplayForeground;
105 private TextView mAmPmTextView;
110 // mAmPmTextView = (TextView) parent.findViewById(R.id.am_pm);
170 mTimeDisplayBackground = (TextView) findViewById(R.id.timeDisplayBackground);
174 mTimeDisplayForeground = (TextView) findViewById(R.id.timeDisplayForeground);
  /frameworks/base/core/tests/coretests/src/android/view/
ViewGroupChildrenTest.java 29 import android.widget.TextView;
196 assertEquals("8", ((TextView) mGroup.getChildAt(0)).getText());
217 assertEquals("17", ((TextView) mGroup.getChildAt(mGroup.getChildCount() - 1)).getText());
259 private TextView createView(String text) {
260 TextView view = new TextView(getActivity());
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
BaseAdapter.java 36 import android.widget.TextView;
158 TextView tv = new TextView(context);
185 if (view instanceof TextView) {
186 TextView tv = (TextView) view;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsEdit.java 33 import android.widget.TextView;
144 mReadEditText.setText(((TextView)sFocusingView).getText());
145 mCandidateEditText.setText(((TextView)sFocusingPairView).getText());
150 mBeforeEditWnnWord.stroke = ((TextView)sFocusingView).getText().toString();
151 mBeforeEditWnnWord.candidate = ((TextView)sFocusingPairView).getText().toString();
394 if ((((TextView)v).getText().length()) > MAX_TEXT_SIZE) {
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageDetail.java 46 import android.widget.TextView;
114 private TextView mTitleView;
188 final TextView summary = (TextView) mRootView.findViewById(android.R.id.summary);
195 mTitleView = (TextView) mRootView.findViewById(android.R.id.title);
198 final TextView text1 = (TextView)mRootView.findViewById(android.R.id.text1);
324 TextView labelView = (TextView) item.findViewById(R.id.label);
325 TextView valueView = (TextView) item.findViewById(R.id.value)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/backup/
BackupTestActivity.java 41 import android.widget.TextView;
282 TextView view = (TextView) convertView;
284 view = (TextView) inflater.inflate(R.layout.test_category_row, parent, false);
313 TextView view = (TextView) convertView;
315 view = (TextView) inflater.inflate(R.layout.bu_preference_row, parent, false);
341 TextView view = (TextView) convertView;
343 view = (TextView) inflater.inflate(R.layout.bu_preference_row, parent, false)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 49 import android.widget.TextView;
78 // TextView shown at the top of each type of attendees
145 final TextView textView =
146 (TextView)mInflater.inflate(R.layout.event_info_label, this, false);
147 textView.setText(label);
148 textView.setClickable(false);
149 return textView;
156 ((TextView)divider).setText(label);
159 ((TextView)divider).setText(label + " (" + count + ")")
    [all...]
  /development/apps/FontLab/src/com/android/fontlab/
FontLab.java 31 import android.widget.TextView;
95 mColumn1 = (TextView)findViewById(R.id.column1);
96 mColumn2 = (TextView)findViewById(R.id.column2);
345 private void setFont(TextView t, TextView f, Map extras) {
363 private TextView mColumn1;
364 private TextView mColumn2;
  /external/replicaisland/src/com/replica/replicaisland/
LevelSelectActivity.java 34 import android.widget.TextView;
153 TextView view = (TextView)sourceView.findViewById(mTextViewResource);
158 TextView view2 = (TextView)sourceView.findViewById(mTextViewResource2);
251 TextView text = (TextView)v.findViewById(R.id.title);
  /frameworks/base/core/java/android/app/
ProgressDialog.java 33 import android.widget.TextView;
55 private TextView mMessageView;
58 private TextView mProgressNumber;
60 private TextView mProgressPercent;
160 mProgressNumber = (TextView) view.findViewById(R.id.progress_number);
161 mProgressPercent = (TextView) view.findViewById(R.id.progress_percent);
168 mMessageView = (TextView) view.findViewById(R.id.message);
  /frameworks/support/v4/java/android/support/v4/view/
PagerTitleStrip.java 28 import android.widget.TextView;
44 private TextView mPrevText;
45 private TextView mCurrText;
46 private TextView mNextText;
73 addView(mPrevText = new TextView(context));
74 addView(mCurrText = new TextView(context));
75 addView(mNextText = new TextView(context));
  /packages/apps/Browser/src/com/android/browser/
BrowserSnapshotPage.java 48 import android.widget.TextView;
280 TextView title = (TextView) view.findViewById(R.id.title);
282 TextView size = (TextView) view.findViewById(R.id.size);
288 TextView date = (TextView) view.findViewById(R.id.date);
PageDialogsHandler.java 31 import android.widget.TextView;
155 ((TextView) pageInfoView.findViewById(R.id.address)).setText(url);
156 ((TextView) pageInfoView.findViewById(R.id.title)).setText(title);
353 TextView successString = (TextView)table.findViewById(R.id.success);
392 TextView textView = (TextView) inflater.inflate(R.layout.ssl_warning,
394 textView.setText(error);
395 parent.addView(textView);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AbsListViewTest.java 50 import android.widget.TextView;
326 TextView tv = (TextView) mListView.getSelectedView();
330 tv = (TextView) mListView.getSelectedView();
334 tv = (TextView) mListView.getSelectedView();
438 TextView v = (TextView) mListView.getSelectedView();
459 TextView tv1 = (TextView) mActivity.findViewById(R.id.headerview1);
460 TextView tv2 = (TextView) mActivity.findViewById(R.id.footerview1)
    [all...]
CursorTreeAdapterTest.java 32 import android.widget.TextView;
556 TextView retView;
557 TextView textView = new TextView(mContext);
558 textView.setText(expectedStr);
564 adapter.getGroupView(0, true, textView, mParent);
573 adapter.getGroupView(10, true, textView, mParent);
579 retView = (TextView) adapter.getGroupView(1, true, null, mParent);
584 retView = (TextView) adapter.getGroupView(0, true, textView, mParent)
    [all...]
HorizontalScrollViewTest.java 44 import android.widget.TextView;
123 TextView child0 = new TextView(mActivity);
128 TextView child1 = new TextView(mActivity);
149 TextView child0 = new TextView(mActivity);
154 TextView child1 = new TextView(mActivity);
169 child1 = new TextView(mActivity)
    [all...]
ScrollViewTest.java 44 import android.widget.TextView;
142 TextView child0 = new TextView(mActivity);
147 TextView child1 = new TextView(mActivity);
167 TextView child0 = new TextView(mActivity);
172 TextView child1 = new TextView(mActivity);
187 child1 = new TextView(mActivity)
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
KeyguardStatusViewManager.java 40 import android.widget.TextView;
69 private TextView mCarrierView;
70 private TextView mDateView;
71 private TextView mStatus1View;
72 private TextView mOwnerInfoView;
73 private TextView mAlarmStatusView;
110 private TextView mTextView;
121 TransientTextManager(TextView textView) {
122 mTextView = textView;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 61 import android.widget.TextView;
230 public static void setSocialSnippet(Context context, Result contactData, TextView statusView,
348 TextView htmlView = (TextView) rootView.findViewById(R.id.stream_item_html);
349 TextView attributionView = (TextView) rootView.findViewById(
351 TextView commentsView = (TextView) rootView.findViewById(R.id.stream_item_comments);
367 * Sets the display name of this contact to the given {@link TextView}. If
370 public static void setDisplayName(Context context, Result contactData, TextView textView)
    [all...]
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfActivity.java 39 import android.widget.TextView;
54 TextView mLimitLabel;
55 TextView mTestTime;
59 TextView mLog;
183 mTestTime = (TextView)findViewById(R.id.testtime);
184 mLimitLabel = (TextView)findViewById(R.id.limitlabel);
201 mLog = (TextView)findViewById(R.id.log);
215 ((TextView)findViewById(R.id.fgtext)).setText(mAvailOpDescriptions[position]);
219 ((TextView)findViewById(R.id.bgtext)).setText(mAvailOpDescriptions[position]);
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPattern.java 37 import android.widget.TextView;
99 protected TextView mHeaderText;
101 protected TextView mFooterText;
102 private TextView mFooterLeftButton;
103 private TextView mFooterRightButton;
312 mHeaderText = (TextView) view.findViewById(R.id.headerText);
318 mFooterText = (TextView) view.findViewById(R.id.footerText);
320 mFooterLeftButton = (TextView) view.findViewById(R.id.footerLeftButton);
321 mFooterRightButton = (TextView) view.findViewById(R.id.footerRightButton);
  /development/apps/Development/src/com/android/development/
AppHwPref.java 39 import android.widget.TextView;
121 TextView tView = (TextView) findViewById(textViewId);
160 TextView tView = (TextView)findViewById(viewId);
PackageBrowser.java 37 import android.widget.TextView;
76 TextView name = (TextView)view.findViewById(R.id.name);
77 TextView description = (TextView)view.findViewById(R.id.description);

Completed in 1188 milliseconds

<<11121314151617181920>>