AutoCompleteTextView Установить высоту для заполнения родительского - PullRequest
0 голосов
/ 16 мая 2018

вот я новичок в Android Development, и изучаю его самостоятельно!Я просто хочу, чтобы высота раскрывающегося меню AutoCompleteTextView была установлена ​​на «Заполнить родительский элемент».


Мой вид представления AutoCompleteTextView в XML:

  <AutoCompleteTextView
    android:id="@+id/countries_list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="@dimen/_20sdp"
    android:dropDownHeight="match_parent"
    android:ems="10">
</AutoCompleteTextView>

Я также прилагаю скриншотэто показывает зеленую часть раскрывающегося списка, заполняющую только часть родителя, но я хочу, чтобы он заполнил родителя его высотой.Я не знаю, возможно ли это или нет?Может кто-нибудь выяснить мне возможность?


DropDown not filling the parent by its Height


Для дополнительной информации я добавляю полный макет здесь:

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <AutoCompleteTextView
        android:id="@+id/countries_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="@dimen/_20sdp"
        android:dropDownHeight="match_parent"
        android:ems="10">
    </AutoCompleteTextView>

    <RelativeLayout
        android:id="@+id/revealLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="?android:attr/actionBarSize"
        android:animateLayoutChanges="true"
        android:background="#00FFA9"
        android:visibility="gone">

        <TextView
            android:id="@+id/textReveal"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="Hello Reveal!"
            android:textColor="#000000"
            android:textSize="@dimen/_24ssp"/>
    </RelativeLayout>
</RelativeLayout>

Ответы [ 2 ]

0 голосов
/ 16 мая 2018

Если вы используете в android:dropDownHeight="match_parent", то он будет работать после API 8 не меньше.Если вы не установите фиксированное значение, например 200dp или 300dp.

0 голосов
/ 16 мая 2018

Установить высоту как match_parent в AutoCompleteTextView

<AutoCompleteTextView
android:id="@+id/countries_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/_20sdp"
android:dropDownHeight="match_parent"
android:ems="10">

...