Удалить верхнюю и нижнюю черные границы из AutoCompleteTextView - PullRequest
0 голосов
/ 19 апреля 2020

Возникла проблема с раскрывающимся компонентом AutoCompleteTextView.

Как видно из рисунка ниже, внутри всплывающего окна есть черные границы, от которых я не могу избавиться.

Черные границы:

Back borders

Я нуб Android, и я уже попробовал в основном все с успехом.

Ниже кода, который я использую.

активность. xml:

<com.google.android.material.textfield.TextInputLayout
                        android:layout_width="0dp"
                        android:layout_height="wrap_content"
                        android:layout_weight="3"
                        android:hint="Categoria"
                        android:layout_marginRight="@dimen/spacing_xlarge"
                        app:hintEnabled="true"
                        app:boxBackgroundColor="@color/white"
                        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu">

                    <AutoCompleteTextView
                            android:dropDownSelector="@color/white"
                            android:id="@+id/private_place_dropdown"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:dropDownHeight="300dp"
                            android:inputType="none"
                            android:drawableTint="@color/white"
                            android:backgroundTint="@color/white"
                            android:editable="false"
                            android:textColor="@color/piumaBaseColor"
                            />

                </com.google.android.material.textfield.TextInputLayout>

dropdown_menu_popup_item. xml :

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:paddingLeft="@dimen/spacing_medium"
    android:paddingRight="@dimen/spacing_medium"
    android:paddingBottom="@dimen/spacing_medium"
    android:ellipsize="end"
    android:maxLines="1"
    android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
    android:gravity="center_vertical"
    android:background="@color/white"
    android:backgroundTint="@color/white"
    android:textColor="@color/grey_extradark"
    android:text="test"/>

Можете ли вы помочь мне? Большое спасибо!

...