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

<<11121314151617181920>>

  /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/media/tests/EffectsTest/src/com/android/effectstest/
BassBoostTest.java 30 import android.widget.TextView;
69 TextView textView;
87 textView = (TextView)findViewById(R.id.bbStrengthMin);
88 textView.setText("0");
89 textView = (TextView)findViewById(R.id.bbStrengthMax);
90 textView.setText("1000");
92 textView = (TextView)findViewById(R.id.bbStrengthValue)
    [all...]
VirtualizerTest.java 30 import android.widget.TextView;
69 TextView textView;
85 textView = (TextView)findViewById(R.id.virtStrengthMin);
86 textView.setText("0");
87 textView = (TextView)findViewById(R.id.virtStrengthMax);
88 textView.setText("1000");
90 textView = (TextView)findViewById(R.id.virtStrengthValue)
    [all...]
  /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/apps/DeskClock/src/com/android/deskclock/
DigitalClock.java 31 import android.widget.TextView;
48 private TextView mTimeDisplayHours, mTimeDisplayMinutes;
76 private final TextView mAmPm;
80 mAmPm = (TextView) parent.findViewById(R.id.am_pm);
124 mTimeDisplayHours = (TextView)findViewById(R.id.timeDisplayHours);
125 mTimeDisplayMinutes = (TextView)findViewById(R.id.timeDisplayMinutes);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsEdit.java 33 import android.widget.TextView;
143 mReadEditText.setText(((TextView)sFocusingView).getText());
144 mCandidateEditText.setText(((TextView)sFocusingPairView).getText());
149 mBeforeEditWnnWord.stroke = ((TextView)sFocusingView).getText().toString();
150 mBeforeEditWnnWord.candidate = ((TextView)sFocusingPairView).getText().toString();
393 if ((((TextView)v).getText().length()) > MAX_TEXT_SIZE) {
  /packages/apps/Settings/src/com/android/settings/applications/
RunningProcessesView.java 42 import android.widget.TextView;
75 TextView mBackgroundProcessText;
76 TextView mForegroundProcessText;
99 TextView uptimeView = null;
152 public TextView name;
153 public TextView description;
154 public TextView size;
155 public TextView uptime;
160 name = (TextView)v.findViewById(R.id.name);
161 description = (TextView)v.findViewById(R.id.description)
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageDetail.java 47 import android.widget.TextView;
117 private TextView mTitleView;
191 final TextView summary = (TextView) mRootView.findViewById(android.R.id.summary);
198 mTitleView = (TextView) mRootView.findViewById(android.R.id.title);
201 final TextView text1 = (TextView)mRootView.findViewById(android.R.id.text1);
327 TextView labelView = (TextView) item.findViewById(R.id.label);
328 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...]
  /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);
  /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 32 import android.widget.TextView;
157 ((TextView) pageInfoView.findViewById(R.id.address)).setText(url);
158 ((TextView) pageInfoView.findViewById(R.id.title)).setText(title);
355 TextView successString = (TextView)table.findViewById(R.id.success);
394 TextView textView = (TextView) inflater.inflate(R.layout.ssl_warning,
396 textView.setText(error);
397 parent.addView(textView);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AbsListViewTest.java 49 import android.widget.TextView;
248 TextView tv = (TextView) mListView.getSelectedView();
252 tv = (TextView) mListView.getSelectedView();
256 tv = (TextView) mListView.getSelectedView();
311 final TextView v = (TextView) mListView.getSelectedView();
324 TextView tv1 = (TextView) mActivity.findViewById(R.id.headerview1);
325 TextView tv2 = (TextView) mActivity.findViewById(R.id.footerview1)
    [all...]
SimpleCursorTreeAdapterTest.java 31 import android.widget.TextView;
96 TextView view = new TextView(mContext);
113 TextView view = new TextView(mContext);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettings.java 76 import android.widget.TextView;
318 TextView tv = (TextView) view.findViewById(R.id.user_textview);
342 TextView tv = (TextView) view.findViewById(R.id.brightness_textview);
384 TextView tv = (TextView) view.findViewById(R.id.settings_tileview);
407 TextView tv = (TextView) view.findViewById(R.id.wifi_textview);
439 TextView tv = (TextView) view.findViewById(R.id.rssi_textview)
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
KeyguardStatusViewManager.java 39 import android.widget.TextView;
68 private TextView mCarrierView;
69 private TextView mDateView;
70 private TextView mStatus1View;
71 private TextView mOwnerInfoView;
72 private TextView mAlarmStatusView;
112 private TextView mTextView;
123 TransientTextManager(TextView textView) {
124 mTextView = textView;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 40 import android.widget.TextView;
223 public static void setSocialSnippet(Context context, Contact contactData, TextView statusView,
356 TextView htmlView = (TextView) rootView.findViewById(R.id.stream_item_html);
357 TextView attributionView = (TextView) rootView.findViewById(
359 TextView commentsView = (TextView) rootView.findViewById(R.id.stream_item_comments);
373 * Sets the display name of this contact to the given {@link TextView}. If
376 public static void setDisplayName(Context context, Contact 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);
  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 30 import android.widget.TextView;
52 final TextView tv = new TextView(mActivity);
104 final TextView tv = new TextView(mActivity);
149 // TextView has not been scrolled.
163 // TextView has been scrolled.
177 // TextView has not been scrolled.
  /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);
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
ActionBarHelperBase.java 37 import android.widget.TextView;
102 TextView titleText = new TextView(mActivity, null, R.attr.actionbarCompatTitleStyle);
140 TextView titleView = (TextView) mActivity.findViewById(R.id.actionbar_compat_title);

Completed in 1035 milliseconds

<<11121314151617181920>>