Good day! There is a small question:

There is an AutoCompleteTextView of the following type:

<android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_row="0" android:layout_column="2"> <AutoCompleteTextView android:id="@+id/address_field" android:textAppearance="?android:attr/textAppearanceLargePopupMenu" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentEnd="true" android:layout_alignParentStart="true" android:layout_alignParentTop="true" android:ems="11" android:hint="@string/address" android:imeOptions="actionNext" android:maxLines="3" android:layout_marginLeft="30dp" android:singleLine="false" android:enabled="true" android:textColor="#757575" /> </android.support.design.widget.TextInputLayout> 

How to stylize it, so that it looks with limiters at the edges? Like this: example

    1 answer 1

    This is the usual 9-patch background. Here you can create your own theme with the selected color.

    • Thank you so much) - V. Vladimir