I tried setting my EditText to multiline once and it worked. But when I changed some stuff on the EditText to make it look a bit cool, it doesn't type in multiline anymore.
<EditText
android:ems="10"
android:inputType="textMultiLine"
android:text=" "
android:id="@+id/reqdesc"
android:layout_width="fill_parent"
android:layout_height="110dp"
android:hint=" Enter your request here"
android:textSize="18sp"
android:maxLength="80"
android:background="@layout/rounded_border_edittext"
android:lines="8"
android:minLines="2"
android:gravity="top|left"
android:maxLines="4"
android:layout_marginTop="14dp"
android:layout_below="@+id/post"
android:layout_alignParentStart="true" />