Autocompletetextview建议宽度填充父级

时间:2015-04-27 14:38:57

标签: java android autocompletetextview

我想显示Autocompletetextview的建议来填充父级,但在4.X设备上,它显示的是一些透明边框,如屏幕上所示:

enter image description here

我的代码是这样的:

Point pointSize = new Point();
getWindowManager().getDefaultDisplay().getSize(pointSize);
editText.setDropDownWidth(pointSize.x);

我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:background="@color/vanilla"
android:layout_height="60dp">

<TextView
    android:id="@+id/cityTV"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="CITY"
    android:layout_gravity="center_vertical"
    android:layout_marginLeft="54dp"
    android:layout_marginStart="54dp"
    android:textSize="16sp"
    android:textColor="@color/blackTextView"/>

 </LinearLayout>

我的autocompletetextview:

<AutoCompleteTextView
        android:id="@+id/editText"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#00000000"
        android:layout_marginRight="10dp"
        android:textSize="18sp"
        android:hint="Город"
        android:inputType="textFilter|textNoSuggestions"
        android:completionThreshold="1"
        android:layout_gravity="center_vertical"
        android:imeOptions="actionSearch"
        android:ellipsize="end"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:singleLine="true"
        android:ems="10"/>

我如何摆脱这些边界并将其显示为trully match_parent?

1 个答案:

答案 0 :(得分:0)

我想我已经找到了答案。如果你想摆脱这个边界,你必须将它添加到你的AutoCompleteTextView布局:

android:popupBackground="@null"

也许对某人有帮助:D