我正在使用Google地图制作应用程序.我正在使用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>
有没有办法将建议窗口关闭,并删除或更改建议窗口的灰色边框的颜色?
@H_404_12@解决方法:试试这样,androID:popupBackground =“#EFEEEC”//根据您想要的边框更改建议框
<autoCompleteTextVIEw androID:ID="@+ID/autocomplete" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:layout_margin="10dp" androID:background="@drawable/text_area" androID:inputType="text|textNoSuggestions|textMultiline" androID:paddingleft="10dp" androID:popupBackground="#EFEEEC" androID:textcolor="#333333" androID:textcolorHint="#9c9c9c" androID:textSize="18sp" androID:completionThreshold="1" />
和auto_textvIEw.xml
<TextVIEw xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:padding="12dp" androID:textcolor="#333333" androID:layout_margin="15dp" androID:textSize="16sp" ></TextVIEw>
text_area9.png
最终输出看起来像
希望这对你有所帮助.
总结以上是内存溢出为你收集整理的Android AutoCompleteTextView建议与TextView重叠全部内容,希望文章能够帮你解决Android AutoCompleteTextView建议与TextView重叠所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)