<EditText
android:hint="Address"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="textMultiLine|textNoSuggestions"
android:id="@+id/edittxtAddress"
android:layout_marginLeft="@dimen/textsize2"
android:textColor="@android:color/white"
android:scrollbars="vertical"
android:minLines="2"
android:textStyle="normal" />
и в Activity для удаления "\ n" пользователь нажимает следующую строку
String editStr= edittxtAddress.getText().toString().trim();
MyString= editStr.replaceAll("\n"," ");