Is the source for the alarm clock that is installed on the Android Emulator available? I didn't see it but it could be hidden somewhere strange. I know there are various demos that have parts of the alarm clock, but the whole source would be more useful. Thanks
I'll take that as a no, haha. Sucks
more than likely when the full SDK is released as well as the full android source, this would be the best place to look at the end of this month
Hi,
the source of the Android AlarmClock is available under
http://android.git.kernel.org/?p=pla...a=tree;hb=HEAD
Cheers,
Edelstuff
P.S. I just released my own version of an alarm clock called "Alarmania".
It's for free and you can have a look at it under
http://www.androlib.com/r.aspx?r=alarmania
![]()
Last edited by Edelstuff; 08-29-2009 at 04:44 PM. Reason: forgot picture
Hi!!
im searching for a solution to end the standby view of my phone at a certain time.
in some other applications i found a permission called system tools --> disable keylock. my problem is, that i dont find a suitable example. the only example that i have found describes how to prevent the phone from sleeping and not how to end the sleeping...
so if anyone has an idea please let me know!!!!!!!
thank you!!
Try it
final Window win = getWindow();
win.addFlags(WindowManager.LayoutParams.FLAG_SHOW_ WHEN_LOCKED
| WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD);
// Turn on the screen unless we are being launched from the AlarmAlert
// subclass.
if (!getIntent().getBooleanExtra(SCREEN_OFF, false)) {
win.addFlags(WindowManager.LayoutParams.FLAG_KEEP_ SCREEN_ON
| WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);
}
updateLayout();
An enhancement of the standard Android AlarmClock application. All the great features of the standard alarm clock, plus extra customization for how alarms .Price tag, while reasonable overall, is higher than competitors with added alarm clock features. Just as there are often differences between actors turned
In this series of articles we are having a look at some tools and resources that make our Android development projects more easy to build. Now its time to talk about the Android source code. Android is an Open Source platform, this means that the source code is available for everybody, like in a GNU/Linux system. Everybody can download, modify and create his “own Android platform”. Even more, we can help the Android community and fix for ourselves code mistakes we can find within this code.
Bookmarks