Allow multi-line in EditText view in Android?

How to allow multi-line in Android’s EditText view? 15 s 15 By default all the EditText widgets in Android are multi-lined. Here is some sample code: <EditText android:inputType=”textMultiLine” <!– Multiline input –> android:lines=”8″ <!– Total Lines prior display –> android:minLines=”6″ <!– Minimum lines –> android:gravity=”top|start” <!– Cursor Position –> android:maxLines=”10″ <!– Maximum Lines –> android:layout_height=”wrap_content” … Read more