在自动完成视图android中设置背景

时间:2011-05-16 20:36:11

标签: android

如何将图像设置为自动填充列表的背景?

    <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="10dp"
    android:textSize="16sp"
    android:textColor="#000">
</TextView>

AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.autocomplete_friends);
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_item, friendsListNameOrder);
    textView.setAdapter(adapter);

谢谢

2 个答案:

答案 0 :(得分:1)

你的xml中的

为你的TextView设置了背景属性:

<TextView android:background="@drawable/your_img" ... other attributes />

答案 1 :(得分:0)

这可能有助于其他人!..我认为你在寻找的是:

textView.setDropDownBackgroundResource();  

OR

searchBox.setDropDownBackgroundDrawable();