Default inputType of EditText in android -


suppose have edittext in layout.

<edittext     android:id="@+id/username"     android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:hint="@string/username"     /> 

we can set inputtype edittext text, number, phone, textpassword, etc. inputtype of edittext default?

it text no special options. type_class_text


Comments

Popular posts from this blog

c++11 - Intel compiler and "cannot have an in-class initializer" when using constexpr -

rest - Spring boot: Request method 'PUT' not supported -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -