AutoCompleteTextView.SetCompletionHint Method

Definition

Overloads

SetCompletionHint(ICharSequence)

Sets the optional hint text that is displayed at the bottom of the the matching list.

SetCompletionHint(String)

Sets the optional hint text that is displayed at the bottom of the the matching list.

SetCompletionHint(ICharSequence)

Sets the optional hint text that is displayed at the bottom of the the matching list.

[Android.Runtime.Register("setCompletionHint", "(Ljava/lang/CharSequence;)V", "GetSetCompletionHint_Ljava_lang_CharSequence_Handler")]
public virtual void SetCompletionHint (Java.Lang.ICharSequence? hint);
[<Android.Runtime.Register("setCompletionHint", "(Ljava/lang/CharSequence;)V", "GetSetCompletionHint_Ljava_lang_CharSequence_Handler")>]
abstract member SetCompletionHint : Java.Lang.ICharSequence -> unit
override this.SetCompletionHint : Java.Lang.ICharSequence -> unit

Parameters

hint
ICharSequence

the text to be displayed to the user

Attributes

Remarks

Sets the optional hint text that is displayed at the bottom of the the matching list. This can be used as a cue to the user on how to best use the list, or to provide extra information.

Java documentation for android.widget.AutoCompleteTextView.setCompletionHint(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

See also

Applies to

SetCompletionHint(String)

Sets the optional hint text that is displayed at the bottom of the the matching list.

public void SetCompletionHint (string? hint);
member this.SetCompletionHint : string -> unit

Parameters

hint
String

the text to be displayed to the user

Remarks

Sets the optional hint text that is displayed at the bottom of the the matching list. This can be used as a cue to the user on how to best use the list, or to provide extra information.

Java documentation for android.widget.AutoCompleteTextView.setCompletionHint(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to