我有一些联系人自动完成和自动搜索算法适用于我的Android应用程序。 首先是一些xml来定义输入的文本视图:
<AutoCompleteTextView
a:id="@+id/recipientBody"
a:layout_width="0dip"
a:layout_height="wrap_content"
a:layout_weight="1.0"
a:nextFocusRight="@+id/smsRecipientButton"
a:hint="@string/sms_to_whom"
a:maxLines="10"
/>
现在我设置了文本视图
AutoCompleteTextView recip =
(AutoCompleteTextView) findViewById(R.id.recipientBody);
ArrayAdapter<String> adapter =
new ArrayAdapter<String>(this, R.layout.list_item, getAllContacts());
recip.setAdapter(adapter);
现在是搜索与输入匹配的联系人的实际算法:
private List<String> getAllContacts() {
List<String> contacts = new ArrayList<String>();
ContentResolver cr = getContentResolver();
Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null);
if (cursor.getCount() > 0) {
while (cursor.moveToNext()) {
String contactId = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID));
String displayName = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
if (Integer.parseInt(cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
Cursor pCursor = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
null,
ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = ?",
new String[]{contactId}, null);
while (pCursor.moveToNext()) {
String phoneNumber = pCursor.getString(pCursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
contacts.add(phoneNumber + " ( " + displayName + " )");
}
pCursor.close();
}
}
}
return contacts;
}
这适用于联系号码和姓名输入。但仍有问题。用户可以输入多个电话号码。但是当一个联系人应用于文本视图时,它无法再次搜索,因为算法会获取整个字符串。
我该如何解决?
答案 0 :(得分:1)
修改强>
好吧,我想了一会儿,发现我的解决方案存在问题 - 没有地方可以将完成列表中的联系人插入TextView。
解决方案似乎是MultiAutoCompleteTextView,此功能旨在解决您的问题。
抱歉混淆!
对我来说,看起来你需要一个自定义适配器。
您可以扩展ArrayAdapter<String>
并实施getFilter()
- 当然,您还需要一个自定义过滤器(扩展Filter
),您将从该方法返回哪个实例。
过滤器的performFiltering
方法有一个参数 - 需要建议列表的字符串。您需要在最后一个逗号之后(或者您使用的任何字符作为分隔符)获取该部分,并返回该子字符串的建议列表。
P.S。
为了获得更好的用户体验,您还可以考虑使用Spans为您的AutoCompleteTextView内容设置样式:http://ballardhack.wordpress.com/2011/07/25/customizing-the-android-edittext-behavior-with-spans/