[android-developers] Re: Android Alarm application

2011-09-26 Thread Deepak
Where can I find android stock alarm clock source code? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Android Alarm application

2011-09-25 Thread Hassy
Hi, Thank you for the reply. I found some source codes and articles about android alarm service. I have created the alarm function and now I'm trying to create database(SQLITE) related stuff. Thank you BR Hassy On Sep 16, 1:27 am, Cristhian Flores cif...@gmail.com wrote: Hi Hassy, Don't

[android-developers] Re: Android Alarm application

2011-09-25 Thread Hassy
I found these source codes.hope it will help http://developer.android.com/intl/ja/resources/samples/ApiDemos/src/com/example/android/apis/app/index.html#Alarm http://code.google.com/p/android-alarm-database/source/browse/trunk/src/com/android/alarmclock/util/AlarmDatabase.java?r=19

Re: [android-developers] Re: Android Alarm application

2011-09-22 Thread anandhi krishnamurthy
how to create alarm to indicate that the person has to take their medicine at particular time -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] Re: Android Alarm application

2011-09-16 Thread Indicator Veritatis
If the data is not going to be searched on, nor shared with other applications, a database is overkill. Simply writing it out as a data file or a Preference is adequate. The sample code for chapter 5 of Android in Action has samples that do all three approaches. It is freely downloadable even if

[android-developers] Re: Android Alarm application

2011-09-15 Thread Hassy
hi Martin as I can't spend lot of time for this application I wanted to know what is the best way to save the alarm settings. sorry for the simple question. Thank you for the advice Hassy Hi, I want to create an android Alarm application but I don't know how to save alarm

Re: [android-developers] Re: Android Alarm application

2011-09-15 Thread Cristhian Flores
Hi Hassy, Don't worry, we are all to learn and teach what you know. Beginners, fans and professionals in order many kinds of people to share knowledge. Regarding your question. It depends on the use you want to give. To start with something basic and database management begins with SQLITE.

[android-developers] Re: Android Alarm application

2011-09-14 Thread mot12
Your questions are really basic. A little study of the Android SDK and you should be able to answer these questions yourself. Yes, probably a sqlite db is the appropriate thing to do if you want to allow for an unlimited amount of alarms. And yes, the alarm manager is the way to go. And guess