7

我有阅读联系方式和阅读生日的代码。但是,如何按照他们即将到来的生日的顺序获取联系人列表?

对于由 标识的单个联系人id,我会得到如下详细信息和生日:

Cursor c = null;
  try {
   Uri uri = ContentUris.withAppendedId(
     ContactsContract.Contacts.CONTENT_URI, id);
   c = ctx.getContentResolver().query(uri, null, null, null, null);
   if (c != null) {
    if (c.moveToFirst()) {
     DatabaseUtils.cursorRowToContentValues(c, data);
    }

   }
   c.close();

   // read birthday
   c = ctx.getContentResolver()
     .query(
       Data.CONTENT_URI,
       new String[] { Event.DATA },
       Data.CONTACT_ID + "=" + id + " AND "
         + Data.MIMETYPE + "= '"
         + Event.CONTENT_ITEM_TYPE + "' AND "
         + Event.TYPE + "=" + Event.TYPE_BIRTHDAY,
       null, Data.DISPLAY_NAME);
   if (c != null) {
    try {
     if (c.moveToFirst()) {
      this.setBirthday(c.getString(0));
     }
    } finally {
     c.close();
    }
   }

   return super.load(id);
  } catch (Exception e) {
   Log.v(TAG(), e.getMessage(), e);
   e.printStackTrace();
   return false;
  } finally {
   if (c != null)
    c.close();
  }

读取所有联系人的代码是:

public Cursor getList() {
        // Get the base URI for the People table in the Contacts content
        // provider.
        Uri contacts = ContactsContract.Contacts.CONTENT_URI;
        // Make the query.
        ContentResolver cr = ctx.getContentResolver();
        // Form an array specifying which columns to return.
        String[] projection = new String[] { ContactsContract.Contacts._ID,
                ContactsContract.Contacts.DISPLAY_NAME };

        Cursor managedCursor = cr.query(contacts, projection, null, null,
                ContactsContract.Contacts.DISPLAY_NAME
                        + " COLLATE LOCALIZED ASC");
        return managedCursor;
    }
4

5 回答 5

1

我想我会按生日排序列表,然后将该列表复制到第二个列表中,使用今天的日期作为“零日期”。似乎这样做比尝试敲出适当的查询更干净,尽管它可能会慢一些。

于 2010-03-22T17:31:39.790 回答
1

我最终得到了这个解决方案

  • 在我的 SQLite 数据库中创建了一个数据持有者表来保存联系人 ID、姓名、生日日期
  • 读取设置了生日的联系人
  • 将带有生日的联系人插入表格
  • 返回一个游标,当在 SQL 中计算当前生日时执行 rawQuery

所以在决赛中,我最终按照我想要的顺序从数据库中获得了一个带有联系人 ID、显示名称和生日的光标

于 2010-04-04T17:38:23.233 回答
1

我反过来做了 - 直接选择存储生日的数据表。

private static final int UPCOMING_COUNT = 10;


public static List<BContact> upcomingBirthday(Context ctx) {
    String today = new SimpleDateFormat("MM-dd").format(new Date());        
    List<BContact> firstPart = upcomingBirthday(ctx, today, "12-31", UPCOMING_COUNT);
    if (firstPart.size() < UPCOMING_COUNT) {
        firstPart.addAll(upcomingBirthday(ctx, "01-01", today, UPCOMING_COUNT - firstPart.size()));
    }
    return firstPart;
}


public static List<BContact> upcomingBirthday(Context ctx, String fromDate, String toDate, int rows) {

  Uri dataUri = ContactsContract.Data.CONTENT_URI;

  String[] projection = new String[] { ContactsContract.Contacts.DISPLAY_NAME,                         
            ContactsContract.CommonDataKinds.Event.CONTACT_ID,
            ContactsContract.CommonDataKinds.Event.START_DATE
            };


  Cursor c = ctx.getContentResolver().query(
       dataUri,
       projection, 
       ContactsContract.Data.MIMETYPE + "= ? AND " + 
       ContactsContract.CommonDataKinds.Event.TYPE + "=" + ContactsContract.CommonDataKinds.Event.TYPE_BIRTHDAY + 
       " AND substr(" + ContactsContract.CommonDataKinds.Event.START_DATE + ",6) >= ?" + 
       " AND substr(" + ContactsContract.CommonDataKinds.Event.START_DATE + ",6) <= ?" ,
       new String[] {ContactsContract.CommonDataKinds.Event.CONTENT_ITEM_TYPE, fromDate, toDate}, 
       "substr("+ ContactsContract.CommonDataKinds.Event.START_DATE +",6)");
  List<BContact> result = new ArrayList<BContact>();
  int i=0;
  while (c.moveToNext() && i<rows) {
      result.add(new BContact(c.getString(0), c.getString(1), c.getString(2)));
      i++;
  }
  c.close();
  return result;

}

SELECT 被调用两次 - 从今天到 12/31 的一次调用和从 01/01 到今天的第二次调用。我将返回的行限制为 10,但这不是必需的。

编辑:我发现这不适用于所有 Android 手机,因为生日日期以许多不同的格式存储。因此,您必须加载所有生日(无序),对其进行解析并在内存中对其进行排序。#失败

于 2010-08-29T14:42:29.730 回答
0

也许,您想在以下答案中使用 CursorJoiner:http: //www.mail-archive.com/android-developers@googlegroups.com/msg44317.html

我有一个类似的问题我还没有解决,所以我很想知道你是否可以让它工作。

于 2010-03-21T03:42:42.833 回答
-1

在 getList() 中调用 query() 时修改排序参数。目前它设置为 DISPLAY_NAME。试试 TYPE_BIRTHDAY。

于 2010-03-20T13:42:01.133 回答