AutoCompleteTextView、ContentResolver、Contacts

来源:互联网 发布:英雄无敌5 for mac 编辑:程序博客网 时间:2024/04/28 00:53

  <AutoCompleteTextView android:id="@+id/edit"
            android:completionThreshold="1"
            android:completionHint="@string/autocomplete_5_hint"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"/>

  android:completionHint="@string/autocomplete_5_hint" 自动填充后,最底下的提示信息。

比如: <string name="autocomplete_5_hint">Typing * will show all of your contacts.</string>

 

   android:completionThreshold="1" 输入多于一个字符才会自动填充

原创粉丝点击