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

オートコンプリート textView に設定するアダプターを作成する必要があります。

次のリンクを参照してください。

リンコーン

リンクツー

于 2012-07-23T09:00:34.323 に答える