Searched refs:textView (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/widget/
H A DAutoCompleteTextViewPopup.java47 final AutoCompleteTextView textView = theActivity.getTextView();
51 textView.requestFocus();
56 waitAssertListSelection(textView, ListView.INVALID_POSITION);
61 textView.setListSelection(0);
65 waitAssertListSelection("set selection to (0)", textView, 0);
69 waitAssertListSelection("move selection to (1)", textView, 1);
72 clearText(textView);
79 final AutoCompleteTextView textView = theActivity.getTextView();
83 textView.requestFocus();
88 waitAssertListSelection(textView, ListVie
224 waitAssertPopupShowState(String message, AutoCompleteTextView textView, boolean expected) argument
235 waitAssertListSelection(AutoCompleteTextView textView, int expected) argument
240 waitAssertListSelection(String message, AutoCompleteTextView textView, int expected) argument
253 clearText(final AutoCompleteTextView textView) argument
[all...]
H A DAutoCompleteTextViewCallbacks.java38 AutoCompleteTextView textView = theActivity.getTextView();
42 textView.requestFocus();
63 AutoCompleteTextView textView = theActivity.getTextView();
67 textView.requestFocus();
71 textView.post(new Runnable() {
89 textView.post(new Runnable() {
112 AutoCompleteTextView textView = theActivity.getTextView();
116 textView.requestFocus();
125 textView.post(new Runnable() {
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DEnvReverbTest.java72 TextView textView;
78 textView = (TextView) findViewById(R.id.sessionText);
81 R.id.stop1, stop, textView,
85 R.id.stop1, stop, textView,
114 textView = (TextView)findViewById(R.id.rvbParam1Value);
115 mParameters[0] = new RoomLevelParam(mReverb, seekBar, textView);
120 textView = (TextView)findViewById(R.id.rvbParam2Value);
121 mParameters[1] = new RoomHFLevelParam(mReverb, seekBar, textView);
126 textView = (TextView)findViewById(R.id.rvbParam3Value);
127 mParameters[2] = new DecayTimeParam(mReverb, seekBar, textView);
274 EnvReverbParam(EnvironmentalReverb reverb, int min, int max, SeekBar seekBar, TextView textView, String unit) argument
297 RoomLevelParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
319 RoomHFLevelParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
341 DecayTimeParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
363 DecayHFRatioParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
385 ReflectionsLevelParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
407 ReflectionsDelayParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
429 ReverbLevelParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
451 ReverbDelayParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
473 DiffusionParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
495 DensityParam(EnvironmentalReverb reverb, SeekBar seekBar, TextView textView) argument
[all...]
H A DEqualizerTest.java71 TextView textView;
100 textView = (TextView)findViewById(R.id.eqParam1Value);
101 mParameters[0] = new BandLevelParam(mEqualizer, 0, bandLevelRange[0], bandLevelRange[1], seekBar, textView);
111 textView = (TextView)findViewById(R.id.eqParam2Value);
112 mParameters[1] = new BandLevelParam(mEqualizer, 1, bandLevelRange[0], bandLevelRange[1], seekBar, textView);
122 textView = (TextView)findViewById(R.id.eqParam3Value);
123 mParameters[2] = new BandLevelParam(mEqualizer, 2, bandLevelRange[0], bandLevelRange[1], seekBar, textView);
133 textView = (TextView)findViewById(R.id.eqParam4Value);
134 mParameters[3] = new BandLevelParam(mEqualizer, 3, bandLevelRange[0], bandLevelRange[1], seekBar, textView);
144 textView
239 EqualizerParam(Equalizer equalizer, int min, int max, SeekBar seekBar, TextView textView, String unit) argument
264 BandLevelParam(Equalizer equalizer, int band, short min, short max, SeekBar seekBar, TextView textView) argument
290 PresetParam(Equalizer equalizer, short min, short max, SeekBar seekBar, TextView textView) argument
[all...]
H A DBassBoostTest.java69 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);
93 mStrength = new BassBoostParam(mBassBoost, 0, 1000, seekBar, textView);
163 public BassBoostParam(BassBoost bassboost, int min, int max, SeekBar seekBar, TextView textView) { argument
164 super (min, max, seekBar, textView, "o/oo");
H A DVirtualizerTest.java69 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);
91 mStrength = new VirtualizerParam(mVirtualizer, 0, 1000, seekBar, textView);
160 public VirtualizerParam(Virtualizer virtualizer, int min, int max, SeekBar seekBar, TextView textView) { argument
161 super (min, max, seekBar, textView, "o/oo");
H A DEffectParameter.java35 public EffectParameter (int min, int max, SeekBar seekBar, TextView textView, String unit) { argument
39 mValueText = textView;
H A DPresetReverbTest.java95 TextView textView = (TextView)findViewById(R.id.presetrvbParam1Value);
96 mParameters[0] = new PresetParam(mPresetReverb, (short)0, (short)(sPresetNames.length - 1), seekBar, textView);
173 public PresetParam(PresetReverb presetrvb, short min, short max, SeekBar seekBar, TextView textView) { argument
174 super (min, max, seekBar, textView, "");
H A DVisualizerTest.java71 TextView textView;
245 TextView textView = (TextView)findViewById(viewId);
247 textView.setText(text);
/frameworks/base/core/tests/coretests/src/android/view/
H A DRunQueue.java39 TextView textView = new TextView(this);
40 textView.setText("RunQueue");
41 textView.setId(R.id.simple_view);
43 setContentView(textView);
H A DPopupWindowVisibility.java62 AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.auto);
63 textView.setAdapter(autoAdapter);
H A DListContextMenu.java141 TextView textView = new TextView(this);
142 textView.setText("This is a test of a custom View");
143 menu.setHeaderView(textView);
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DAutoCompleteTextViewActivityPortrait.java48 AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.edit);
49 textView.setAdapter(adapter);
H A DAutoCompleteTextViewActivityLandscape.java54 AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.edit);
55 textView.setAdapter(adapter);
H A DInputTypeActivity.java150 TextView textView = (TextView) view.findViewById(R.id.label);
151 textView.setText(label);
/frameworks/base/core/tests/coretests/src/android/widget/scroll/
H A DScrollViewButtonsAndLabels.java80 TextView textView = new TextView(this);
81 textView.setText("Text View " + i);
82 mLinearLayout.addView(textView, p);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DCustomBar.java207 TextView textView = (TextView) child;
208 setText(textView, stringReference);
209 return textView;
218 TextView textView = (TextView) child;
219 setText(textView, stringReference);
220 return textView;
226 private void setText(TextView textView, String stringReference) { argument
229 textView.setText(value.getValue());
231 textView.setText(stringReference);
260 TextView textView
[all...]
/frameworks/base/core/java/android/content/
H A DSyncActivityTooManyDeletes.java78 TextView textView = new TextView(this);
81 textView.setText(String.format(tooManyDeletesDescFormat.toString(),
88 ll.addView(textView, lp);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardStatusView.java143 private void maybeSetUpperCaseText(TextView textView, CharSequence text) { argument
145 && textView.getId() != R.id.owner_info) { // currently only required for date view
146 textView.setText(text != null ? text.toString().toUpperCase() : null);
148 textView.setText(text);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewPropertyAlphaActivity.java77 TextView textView = (TextView) findViewById(R.id.spantext);
78 if (textView != null) {
93 textView.setText(text);
/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java435 TextView textView = new TextView(getContext(), null,
437 textView.setEllipsize(TruncateAt.END);
441 textView.setLayoutParams(lp);
442 addView(textView);
443 mTextView = textView;
/frameworks/base/core/java/android/widget/
H A DSpellChecker.java104 public SpellChecker(TextView textView) { argument
105 mTextView = textView;
H A DEditor.java190 Editor(TextView textView) { argument
191 mTextView = textView;
2281 TextView textView = (TextView) convertView;
2283 if (textView == null) {
2284 textView = (TextView) mInflater.inflate(mTextView.mTextEditSuggestionItemLayout,
2289 textView.setText(suggestionInfo.text);
2293 textView.setBackgroundColor(Color.TRANSPARENT);
2295 textView.setBackgroundColor(Color.WHITE);
2298 return textView;
H A DTextView.java8692 final TextView textView = mView.get();
8693 if (textView != null && (textView.isFocused() || textView.isSelected())) {
8701 textView.invalidate();
8715 final TextView textView = mView.get();
8716 if (textView != null) textView.invalidate();
8725 final TextView textView = mView.get();
8726 if (textView !
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DKeyguardStatusViewManager.java123 TransientTextManager(TextView textView) { argument
124 mTextView = textView;

Completed in 247 milliseconds

12