Ads
Ads

Reputation: 6691

how to create full functionality of calendar in android?

it seems android calendar api is not available. can you please give me some tips and tricks for creating a similar thing.just like creating events,meeting, birthday etc.. and also notification when the event occurs. and also layout should be similar to-our in-built calendar give me some ideas or hint about look and logic?

Upvotes: 6

Views: 9233

Answers (1)

Cheryl Simon
Cheryl Simon

Reputation: 46844

To send notifications, read creating status bar notifications.

To create layouts, read declaring layout, common layout objects, and hello GridView. There is an equivalent introductory tutorial for each layout type.

You can access the Calendar events through the Data API. However, the Android specific calendar APIs are not part of the public Android SDK. Thus, you could access them, but it is highly recommended that you do not since they are likely to change in future versions of the os.

Upvotes: 3

Related Questions