Anybody have come across with this situation. I need to show minimum 4 lines for edittext and when minLines given itworks fine But when add inputType tag to it , Min Lines fails..
<EditText
android:id="@+id/my_review_review_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:inputType="textCapSentences|textAutoCorrect"
android:background="@drawable/rect"
android:gravity="top|left"
android:hint="Add a review"
android:maxLines="5"
android:minLines="4"
android:padding="10dp" />
Please correct me if am wrong and provide me a solution....