0

我是安卓新手。我有一个键盘和一个联系人列表。我想使用键盘和autocompleteTextView. 有人可以给我一些例子吗?我没有在互联网上找到此类问题的示例。

任何帮助表示赞赏。

4

2 回答 2

2
      ========>phoneArr====> which contains ur all contacts
    if(phoneArr.length > 0 )
    {
      AutoCompleteTextView textView = (AutoCompleteTextView) this.findViewById(R.id.empphonenumber);
      ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.auto_list_item, phoneArr);
      textView.setAdapter(adapter);
    }

=======>auto_list_item.xml

<?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:background="@android:color/transparent"
android:textColor="#000">

通过这种方式,您可以将适配器添加到。Autocomplete listview它比以前的更好

于 2012-07-23T08:14:01.343 回答
0

您需要创建 adpater 以在您的自动完成 textView 中进行设置。

参考以下链接:

联通

链接二

于 2012-07-23T09:00:34.323 回答