Ashish Augustine
Ashish Augustine

Reputation: 2030

Reminder in android

I wanted to create a reminder app for my android. Actually I wanted to save reminders and the dates in the database and show the reimnder when the scheduled time is reached. Can anyone please suggest the code for this. Can alarms be given specific id at the time of saving and used to retrieve the specific reminder from database. I am new to android. Please help me.

Upvotes: 0

Views: 1499

Answers (2)

coder_For_Life22
coder_For_Life22

Reputation: 26971

Yes.. Your question is to broad for stackoverflow. But i would suggest you picking up a copy of Android For Dummies

This has a full tutorial of exactly what you are looking for.

Upvotes: 1

slayton
slayton

Reputation: 20319

You probably want to use Notifications in conjunction with the AlarmManager. There are lots of tutorials on the web that explain how to do this. Here is one: http://android.arnodenhond.com/tutorials/alarm-notification

Upvotes: 1

Related Questions