Android possible to join Contacts Table with own table?
Is it possible to use a query to JOIN the default 开发者_JAVA技巧Contacts table with your own table?
Not through SQL or ContentResolver
. You can use techniques like CursorJoiner
to create a Cursor
that joins two other Cursors
.
精彩评论