what is the view element which gives effect like a HTML's TextArea? I want to create a form to send Email and for the body field I want to create a textarea type of UI element in the form.
Can someone suggest what is the way to go for it?
what is the view element which gives effect like a HTML's TextArea? I want to create a form to send Email and for the body field I want to create a textarea type of UI element in the form.
Can someone suggest what is the way to go for it?
EditText
would seem to be the obvious choice here.
You'll need to set the android:inputType
attribute to textMultiLine
.