Android how to get contact list which used whats app application programmatically
问题 i have working with small android application in this application i am try to get contact which used whats app application and also alert for my selected whats app contact from my application when contact updates his/her profile picture and status. 回答1: You can query your content cursor to see what properties contacts have. Cursor c1 = appActivity.getContentResolver().query( ContactsContract.Data.CONTENT_URI ,null,null,null, null); c1.moveToFirst(); DatabaseUtils.dumpCursor(c1); c1.close();