我正在使用谷歌地图制作应用程序。我正在使用 AutoCompleteTextView 来获取地点建议。输出如下:
从图中可以看出,建议框的边框与 TextView 重叠。我在线性布局内使用带有 Textview 的自定义项目布局。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fff"
android:orientation="horizontal" >
<TextView
android:id="@+id/resultValue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#fff"
android:paddingBottom="5dp"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingTop="5dp"
android:textColor="#474040"
android:textSize="15sp" />
</LinearLayout>
有没有办法降低建议窗口并删除或更改建议窗口的灰色边框的颜色?