I am trying to implement AutoCompleteTextView with multiline text and with keyboard done button. But done button does not show on keyboard (shows enter button). Same thing i have tried with android:singleLine="true"
and text comes in single line with done button.
<AutoCompleteTextView
android:id="@+id/txtVillageName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/edt_border"
android:cursorVisible="true"
android:maxLines="4"
android:hint="Enter your location"
android:imeOptions="actionDone"
android:textColor="@color/text_color"
android:textColorHint="@color/lblColor"
android:textSize="@dimen/text_size_large" />