tags:

views:

601

answers:

1

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?

+6  A: 

EditText would seem to be the obvious choice here.

You'll need to set the android:inputType attribute to textMultiLine.

Dave Webb