Searched refs:TextView (Results 126 - 150 of 288) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/accounts/
H A DGrantCredentialsPermissionActivity.java22 import android.widget.TextView;
91 final TextView authTokenTypeView = (TextView) findViewById(R.id.authtoken_type);
131 ((TextView) findViewById(R.id.account_name)).setText(mAccount.name);
132 ((TextView) findViewById(R.id.account_type)).setText(accountTypeLabel);
155 ((TextView) view.findViewById(R.id.package_label)).setText(packageLabel);
/frameworks/base/core/java/com/android/internal/widget/
H A DDigitalClock.java33 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/
H A DViewGroupChildrenTest.java29 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());
H A DDrawableBgMinSizeTest.java32 import android.widget.TextView;
45 private TextView mTextView;
64 mTextView = (TextView) a.findViewById(R.id.text_view);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DBaseAdapter.java36 import android.widget.TextView;
158 TextView tv = new TextView(context);
185 if (view instanceof TextView) {
186 TextView tv = (TextView) view;
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DBassBoostTest.java30 import android.widget.TextView;
69 TextView textView;
87 textView = (TextView)findViewById(R.id.bbStrengthMin);
89 textView = (TextView)findViewById(R.id.bbStrengthMax);
92 textView = (TextView)findViewById(R.id.bbStrengthValue);
163 public BassBoostParam(BassBoost bassboost, int min, int max, SeekBar seekBar, TextView textView) {
H A DVirtualizerTest.java30 import android.widget.TextView;
69 TextView textView;
85 textView = (TextView)findViewById(R.id.virtStrengthMin);
87 textView = (TextView)findViewById(R.id.virtStrengthMax);
90 textView = (TextView)findViewById(R.id.virtStrengthValue);
160 public VirtualizerParam(Virtualizer virtualizer, int min, int max, SeekBar seekBar, TextView textView) {
H A DSimplePlayer.java29 import android.widget.TextView;
62 TextView mSessionText;
65 int stopButtonId, ImageView stopButton, TextView sessionText, String fileName, int stream, int session)
72 int stopButtonId, ImageView stopButton, TextView sessionText, int fileResId, int stream, int session) {
79 int stopButtonId, ImageView stopButton, TextView sessionText, int stream, int session) {
/frameworks/base/core/java/android/app/
H A DProgressDialog.java33 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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettings.java76 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 t
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DKeyguardStatusViewManager.java39 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) {
178 mCarrierView = (TextView) findViewById(R.id.carrier);
179 mDateView = (TextView) findViewByI
[all...]
H A DAccountUnlockScreen.java43 import android.widget.TextView;
68 private TextView mTopHeader;
69 private TextView mInstructions;
95 mTopHeader = (TextView) findViewById(R.id.topHeader);
100 mInstructions = (TextView) findViewById(R.id.instructions);
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DFrameworkPerfActivity.java39 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]);
/frameworks/base/core/java/android/text/method/
H A DTouch.java26 import android.widget.TextView;
37 public static void scrollTo(TextView widget, Layout layout, int x, int y) {
86 public static boolean onTouchEvent(TextView widget, Spannable buffer,
181 public static int getInitialScrollX(TextView widget, Spannable buffer) {
190 public static int getInitialScrollY(TextView widget, Spannable buffer) {
H A DBaseKeyListener.java23 import android.widget.TextView;
42 * a {@link TextView}. If there is a selection, deletes the selection; otherwise,
54 * key in a {@link TextView}. If there is a selection, deletes the selection; otherwise,
116 if (view instanceof TextView) {
117 final Layout layout = ((TextView) view).getLayout();
/frameworks/base/core/java/android/widget/
H A DSimpleAdapter.java43 * <li> TextView. The expected bind value is a string and {@link #setViewText(TextView, String)}
175 } else if (v instanceof TextView) {
176 // Note: keep the instanceof TextView check at the bottom of these
178 setViewText((TextView) v, text);
184 } else if (v instanceof TextView) {
185 // Note: keep the instanceof TextView check at the bottom of these
187 setViewText((TextView) v, text);
269 * Called by bindView() to set the text for a TextView but only if
271 * handle binding to a TextView
[all...]
H A DSimpleCursorAdapter.java34 * returned value is false and the view to bind is a TextView,
35 * {@link #setViewText(TextView, String)} is invoked. If the returned value
119 * returned value is false and the view to bind is a TextView,
120 * {@link #setViewText(TextView, String)} is invoked. If the returned value is
132 * @see #setViewText(TextView, String)
155 if (v instanceof TextView) {
156 setViewText((TextView) v, text);
217 * Called by bindView() to set the text for a TextView but only if
219 * handle binding to a TextView.
224 * @param v TextView t
[all...]
H A DSimpleCursorTreeAdapter.java34 * returned value is false and the view to bind is a TextView,
35 * {@link #setViewText(TextView, String)} is invoked. If the returned value
228 if (v instanceof TextView) {
229 setViewText((TextView) v, text);
234 " only to TextView and ImageView!");
284 * Called by bindView() to set the text for a TextView but only if
286 * handle binding to a TextView.
291 * @param v TextView to receive text
292 * @param text the text to be set for the TextView
294 public void setViewText(TextView
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuItemView.java31 import android.widget.TextView;
42 private TextView mTitleView;
44 private TextView mShortcutView;
84 mTitleView = (TextView) findViewById(com.android.internal.R.id.title);
90 mShortcutView = (TextView) findViewById(com.android.internal.R.id.shortcut);
/frameworks/base/core/tests/coretests/src/android/widget/scroll/
H A DRequestRectangleVisibleTest.java28 import android.widget.TextView;
42 private TextView mTopBlob;
46 private TextView mBottomBlob;
63 mTopBlob = (TextView) a.findViewById(R.id.topBlob);
65 mBottomBlob = (TextView) a.findViewById(R.id.bottomBlob);
/frameworks/base/libs/usb/tests/AccessoryChat/src/com/android/accessorychat/
H A DAccessoryChat.java34 import android.widget.TextView;
44 public class AccessoryChat extends Activity implements Runnable, TextView.OnEditorActionListener {
51 private TextView mLog;
91 mLog = (TextView)findViewById(R.id.log);
154 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardAbsKeyInputView.java32 import android.widget.TextView;
33 import android.widget.TextView.OnEditorActionListener;
44 protected TextView mPasswordEntry;
100 mPasswordEntry = (TextView) findViewById(getPasswordTextViewId());
197 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
/frameworks/support/v4/java/android/support/v4/app/
H A DListFragment.java33 import android.widget.TextView;
65 TextView mStandardEmptyView;
116 TextView tv = new TextView(getActivity());
227 * The default content for a ListFragment has a TextView that can
333 mStandardEmptyView = (TextView)root.findViewById(INTERNAL_EMPTY_ID);
/frameworks/base/core/java/android/preference/
H A DTwoStatePreference.java28 import android.widget.TextView;
215 TextView summaryView = (TextView) view.findViewById(com.android.internal.R.id.summary);
/frameworks/base/core/tests/coretests/src/android/util/
H A DScrollViewScenario.java30 import android.widget.TextView;
102 final TextView tv = new TextView(context);

Completed in 404 milliseconds

1234567891011>>