HomeSort by relevance Sort by last modified time
    Searched defs:hintText (Results 1 - 25 of 56) sorted by null

1 2 3

  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
EditorInfoTest.java 50 info.hintText = "hintText";
84 assertEquals(info.hintText.toString(), targetInfo.hintText.toString());
ExtractedTextTest.java 61 final Spannable hintText = (Spannable) extractedText.hint;
62 assertEquals(1, hintText.getSpans(0, hintText.length(), StyleSpan.class).length);
  /frameworks/support/compat/src/androidTest/java/androidx/core/view/accessibility/
AccessibilityNodeInfoCompatTest.java 49 final CharSequence hintText = (Build.VERSION.SDK_INT >= 19) ? "hint text" : null;
51 nodeCompat.setHintText(hintText);
52 assertThat(nodeCompat.getHintText(), equalTo(hintText));
  /developers/build/prebuilts/gradle/CommitContentSampleApp/app/src/main/java/com/example/android/commitcontent/app/
MainActivity.java 196 final CharSequence hintText;
199 hintText = "MIME: []";
202 hintText = "MIME: " + Arrays.toString(contentMimeTypes);
222 exitText.setHint(hintText);
  /developers/samples/android/input/keyboard/CommitContentSampleApp/app/src/main/java/com/example/android/commitcontent/app/
MainActivity.java 196 final CharSequence hintText;
199 hintText = "MIME: []";
202 hintText = "MIME: " + Arrays.toString(contentMimeTypes);
222 exitText.setHint(hintText);
  /development/samples/browseable/CommitContentSampleApp/src/com.example.android.commitcontent.app/
MainActivity.java 196 final CharSequence hintText;
199 hintText = "MIME: []";
202 hintText = "MIME: " + Arrays.toString(contentMimeTypes);
222 exitText.setHint(hintText);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTextView.java 37 private CharSequence hintText;
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 390 public CharSequence hintText;
522 pw.println(prefix + "hintText=" + hintText
547 TextUtils.writeToParcel(hintText, dest, flags);
576 res.hintText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZonePickerView.java 117 String hintText = getResources().getString(hintTextId);
121 ssb.append(hintText);
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/view/inputmethod/
CommitContentSupport.java 201 final CharSequence hintText;
204 hintText = "MIME: []";
207 hintText = "MIME: " + Arrays.toString(contentMimeTypes);
222 exitText.setHint(hintText);
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
TwoButtonMethod.java 47 private static final String STATE_HINT_TEXT = "hintText";
57 private CharSequence hintText;
65 hintText = bundle.getCharSequence(STATE_HINT_TEXT);
73 bundle.putCharSequence(STATE_HINT_TEXT, hintText);
145 public void setHintText(@Nullable CharSequence hintText) {
146 this.hintText = hintText;
162 if (!TextUtils.isEmpty(hintText) && !buttonClicked) {
163 hintTextView.setText(hintText);
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/hint/
DotAnswerHint.java 75 LayoutInflater inflater, ViewGroup container, View puck, TextView hintText) {
82 hintText.setTextSize(
PawAnswerHint.java 82 LayoutInflater inflater, ViewGroup container, View puck, TextView hintText) {
87 hintText.setTextSize(
  /frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
DatabaseHelper.java 336 public final String hintText;
351 hintText = c.getString(c.getColumnIndex(SoundModelContract.KEY_HINT_TEXT));
401 values.put(SoundModelContract.KEY_HINT_TEXT, hintText);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextView.java 38 private CharSequence hintText;
181 this.hintText = getResources().getText(resId);
185 public final void setHint(CharSequence hintText) {
186 this.hintText = hintText;
191 return hintText;
  /packages/apps/Dialer/java/com/android/dialer/voicemail/settings/
VoicemailChangePinActivity.java 96 private TextView hintText;
119 activity.hintText.setText(R.string.change_pin_enter_old_pin_hint);
201 activity.hintText.setText(
246 activity.hintText.setText(null);
356 hintText = (TextView) view.findViewById(R.id.hintText);
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/
AnswerFragment.java 200 @StringRes public final int hintText;
206 @StringRes int hintText) {
210 this.hintText = hintText;
305 ? getText(answerAndReleaseBehavior.hintText)
306 : getText(secondaryBehavior.hintText));
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java     [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 

Completed in 619 milliseconds

1 2 3