simple example to access phone book and calendar in android? [closed]
where can i find something like this?
You can access the phoneboook through intents:
Intent newcontact_intent = new Intent(v.getContext(), Contact.class);
newcontact_intent.putExtra("partyid", partyid);
startActivityForResult(newcontact_intent, 1);
And It is true that the calendar feature is not officially supported by google. we have to make our custom classe and use them.But you can access Calendar class if you want current date and time.
This will help with accessing calendar functionality. But be warned: it's not officially supported by google.
Calendar Tutorial
There are many similar tutorials available for accessing contacts, such as this
精彩评论