View.AutofillTypeText Field

Definition

Caution

This constant will be removed in the future version. Use Android.Views.AutofillType enum directly instead of this field.

Autofill type for a text field, which is filled by a CharSequence.

[Android.Runtime.Register("AUTOFILL_TYPE_TEXT", ApiSince=26)]
[System.Obsolete("This constant will be removed in the future version. Use Android.Views.AutofillType enum directly instead of this field.", true)]
public const Android.Views.AutofillType AutofillTypeText = 1;
[<Android.Runtime.Register("AUTOFILL_TYPE_TEXT", ApiSince=26)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Views.AutofillType enum directly instead of this field.", true)>]
val mutable AutofillTypeText : Android.Views.AutofillType

Field Value

Value = 1
Attributes

Remarks

Autofill type for a text field, which is filled by a CharSequence.

AutofillValue instances for autofilling a View can be obtained through AutofillValue#forText(CharSequence), and the value passed to autofill a View can be fetched through AutofillValue#getTextValue().

Java documentation for android.view.View.AUTOFILL_TYPE_TEXT.

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