He I would like to show activity with contacts from sim card.
Now I show 开发者_运维技巧list like this:Intent contactPickerIntent = new Intent(Intent.ACTION_PICK, People.CONTENT_URI);
startActivityForResult(contactPickerIntent, CONTACT_PICKER_RESULT);
but this way shows me only contacts from google account.
How to show contacts from sim card?
My program must run on android 1.6Thanks
You can see this link "How to access the sim contact table using the SDK." This is working though the solution is not part of the SDK.
精彩评论