MobileUI LogoMobileUI
/

EditTextView


The EditTextView is an input field to enter and display text. Its text attribute binds to a String property which is automatically synced with the view’s content on every keystroke.

EditTextView on iOS
EditTextView on Android
iOSAndroid

Usage

An input field for a textProperty
<EditTextView text="#{textProperty}"/>
An input field for an e-mail address
<EditTextView text="#{userEmail}" keyboardType="email"/>

Attributes

NameTypeDefaultBindingDescription

Inherits all attributes from TextView and adds the following attributes:

text

string

""

input/output

Please note, that this attribute has input/output binding behavior here, while it had only output behavior with the TextView.

keyboardType

string

standard

output

The type of the keyboard to open, when the input field is selected. Can have one of the following values: standard, uri, email, phone, datetime, date, time, person, number, numberDecimal, numberPassword, password


Parts of this documentation are a derivate of the Android Developer Documentation by Google used under CC-BY-2.5.