Dmitri Plotnikov
dd768a6a73
ContactsContract: Adding joined columns to the Data class definition.
...
The rationale is this. Since all these joined columns are currently on
different classes, we routinely see code like this:
private static final String[] PROJECTION_PHONE = {
Data._ID, // 0
RawContacts.CONTACT_ID, // 1
Phone.TYPE, // 2
Phone.NUMBER, // 3
Phone.LABEL, // 4
Contacts.DISPLAY_NAME, // 5
};
The most noxious line is RawContacts.CONTACT_ID
After this change, the above declaration changes to:
private static final String[] PROJECTION_PHONE = {
Data._ID, // 0
Data.CONTACT_ID, // 1
Phone.TYPE, // 2
Phone.NUMBER, // 3
Phone.LABEL, // 4
Data.DISPLAY_NAME, // 5
};
Change-Id: I820e68efd6c1364241596f826c4da1b9c2defe11
2009-09-18 13:53:49 -07:00
..
2009-09-14 21:21:52 -07:00
2009-03-03 19:31:44 -08:00
2009-09-14 13:05:43 -04:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-05-15 00:44:45 -07:00
2009-06-10 16:40:37 -07:00
2009-03-03 19:31:44 -08:00
2009-07-13 17:52:19 -07:00
2009-07-09 14:29:15 +09:00
2009-09-17 13:54:23 +01:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-05-14 23:47:05 -07:00
2009-04-13 16:57:28 -07:00
2009-05-14 23:47:05 -07:00
2009-04-13 16:11:55 -07:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-07-23 18:48:44 -07:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-08-17 09:53:17 -07:00
2009-08-20 16:15:46 -07:00
2009-09-18 13:53:49 -07:00
2009-07-16 14:14:08 -07:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-05-24 23:45:03 -07:00
2009-09-14 15:15:30 -07:00
2009-09-15 13:57:27 -07:00
2009-03-03 19:31:44 -08:00
2009-07-10 14:11:26 -07:00
2009-05-18 16:05:52 -07:00
2009-03-03 19:31:44 -08:00
2009-07-30 15:39:37 +08:00
2009-08-12 17:18:33 -07:00
2009-03-03 19:31:44 -08:00
2009-09-15 13:57:27 -07:00
2009-08-19 17:05:48 -07:00
2009-05-25 17:37:41 +09:00
2009-03-03 19:31:44 -08:00
2009-09-14 21:21:52 -07:00
2009-09-01 10:35:15 -07:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-03-18 17:39:46 -07:00
2009-07-28 11:18:14 -07:00
2009-03-03 19:31:44 -08:00
2009-09-17 18:01:35 -07:00
2009-04-13 16:11:55 -07:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-09-01 09:34:21 -04:00
2009-07-10 14:11:26 -07:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-05-06 11:12:38 -07:00
2009-05-06 11:12:38 -07:00
2009-06-11 12:17:50 -07:00
2009-03-03 19:31:44 -08:00
2009-05-14 23:47:05 -07:00
2009-07-15 17:01:48 -07:00
2009-03-03 19:31:44 -08:00
2009-08-26 10:56:45 -07:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-08-26 10:56:45 -07:00
2009-03-03 19:31:44 -08:00
2009-09-17 17:01:59 -07:00
2009-03-03 19:31:44 -08:00
2009-07-08 11:59:00 -07:00
2009-03-03 19:31:44 -08:00
2009-03-27 19:19:20 -07:00
2009-08-20 11:12:27 -07:00
2009-03-03 19:31:44 -08:00
2009-03-03 19:31:44 -08:00
2009-06-09 22:58:46 -07:00
2009-03-03 19:31:44 -08:00
2009-03-18 17:39:46 -07:00
2009-09-15 18:59:31 -07:00
2009-03-18 17:39:46 -07:00