Searched defs:hintText (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java252 public CharSequence hintText; field in class:EditorInfo
337 pw.println(prefix + "hintText=" + hintText
360 TextUtils.writeToParcel(hintText, dest, flags);
382 res.hintText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DSpinnerICS.java643 * @param hintText Hint text to set.
645 public void setPromptText(CharSequence hintText); argument
667 public void setPromptText(CharSequence hintText) { argument
668 mPrompt = hintText;
729 public void setPromptText(CharSequence hintText) { argument
731 mHintText = hintText;
/frameworks/base/core/java/android/widget/
H A DSpinner.java936 * @param hintText Hint text to set.
938 public void setPromptText(CharSequence hintText); argument
967 public void setPromptText(CharSequence hintText) { argument
968 mPrompt = hintText;
1061 public void setPromptText(CharSequence hintText) { argument
1063 mHintText = hintText;
H A DSearchView.java1047 private CharSequence getDecoratedHint(CharSequence hintText) { argument
1049 if (!mIconifiedByDefault) return hintText;
1052 ssb.append(hintText);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java1013 private CharSequence getDecoratedHint(CharSequence hintText) { argument
1015 if (!mIconifiedByDefault) return hintText;
1018 ssb.append(hintText);

Completed in 209 milliseconds