+ Reply to Thread
Results 1 to 8 of 8

Thread: Android Alarm Clock Source

  1. #1
    Join Date
    Sep 2008
    Posts
    5

    Default Android Alarm Clock Source


    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

  2. #2
    Join Date
    Sep 2008
    Posts
    5

    Default Re: Android Alarm Clock Source

    I'll take that as a no, haha. Sucks

  3. #3
    Join Date
    Sep 2008
    Location
    orange county, ca
    Posts
    916

    Default Re: Android Alarm Clock Source

    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

  4. #4
    Join Date
    Aug 2009
    Posts
    1

    Default Re: Android Alarm Clock Source

    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

  5. #5
    Join Date
    Dec 2010
    Posts
    3

    Default Re: Android Alarm Clock Source

    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!!

  6. #6
    Join Date
    Feb 2011
    Posts
    1

    Default Re: Android Alarm Clock Source

    Quote Originally Posted by monnti View Post
    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();

  7. #7
    Join Date
    Feb 2011
    Location
    4822 Stockert Hollow Road Tukwila, WA 98168
    Posts
    1

    Default Re: Android Alarm Clock Source

    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

  8. #8
    Join Date
    Feb 2011
    Location
    1763 Brown Bear Drive Perris, CA 92370
    Posts
    1

    Default Re: Android Alarm Clock Source


    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.

+ Reply to Thread

Similar Threads

  1. Open Source Dream Phone
    By AusIV in forum Applications
    Replies: 1
    Last Post: 11-16-2007, 06:42 AM
  2. Funambol develop open-source push-email & PIM sync client for Android
    By Mr Android in forum General Android Chat
    Replies: 0
    Last Post: 11-16-2007, 01:29 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts