在android中按字母顺序排序conctacts

And*_* me 1 sorting android android-contentresolver android-contacts

您正在使用此代码从以下方法获取Android联系人列表中最后一个参数的联系人即 null

谁能告诉我如何按字母顺序对联系人列表进行排序?我通过哪个参数,所以我得到所需的输出:

Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI, null,
            null, null, null);
Run Code Online (Sandbox Code Playgroud)

Mar*_*tin 5

您可以使用字母顺序对联系人排序

Cursor cursor = getContentResolver.query(Phone.CONTENT_URI, null, null, null, Phone.DISPLAY_NAME + " ASC");
Run Code Online (Sandbox Code Playgroud)