Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7839685
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T15:30:58+00:00 2026-06-02T15:30:58+00:00

I am setting alarm manager by this method: public void setAlarmManager(Context context, Intent intent,

  • 0

I am setting alarm manager by this method:

public void setAlarmManager(Context context, Intent intent, long repeat) {

        PendingIntent pendingIntent;
        pendingIntent = PendingIntent.getService(context, 0, intent, 0);

        AlarmManager alarmManager = (AlarmManager) context
                .getSystemService(context.ALARM_SERVICE);

        Calendar calendar = Calendar.getInstance();
        calendar.setTimeInMillis(System.currentTimeMillis());
        calendar.add(Calendar.SECOND, 10);
        alarmManager.setRepeating(AlarmManager.RTC_WAKEUP,
                calendar.getTimeInMillis(), repeat, pendingIntent);
    }

by this method i am sending sms in a specific number after a fixed amount of time.But this method doesn’t remain consistent.Specially when the goes to sleep mode it doesn’t work.how can i make this continous that it will also work in sleep mode?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T15:31:01+00:00Added an answer on June 2, 2026 at 3:31 pm

    AlarmManager with a _WAKEUP alarm only guarantees that it will keep the device awake if you use a getBroadcast() PendingIntent.

    If your work will take only a handful of milliseconds, switch your Service to a BroadcastReceiver.

    If your work will take more than a few milliseconds, consider using my WakefulIntentService, which offers a pattern for allowing _WAKEUP alarms to reliably get their work done.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is the code: public void startAlarm(Context context) { Intent intent = new Intent(context,
I am setting an alarm for my reminder app: PendingIntent sender = PendingIntent.getBroadcast(AddToDoList.this, Integer.parseInt(DBHelperClass.getMaxPrimaryId()),
I'm setting an alarm like this: alarmManager.set(AlarmManager.RTC_WAKEUP, alarmTime, pendingEvent); I'm interested in removing all
i'm currently setting the alarm via the following.. //set the alarm alarm.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), pendingintent);
I am setting some events through AlarmManager. below is the code. AlarmManager AM =(AlarmManager)getSystemService(Context.ALARM_SERVICE);
I've been searching this site and found some answers related to setting an alarm.
Android's AlarmManager Javadoc states When an alarm goes off, the Intent that had been
I have this piece of code that fire the alarm once by setting a
I am setting an alarm with alarm manager to run at 6PM. If it
Below is my code for setting repeat alarm for daily. Now i need to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.