根据联系人获得即将来临的生日
+ 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;?