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 8199173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T06:07:01+00:00 2026-06-07T06:07:01+00:00

I have two activitys in my app. The first activity acquires a wakelock that

  • 0

I have two activitys in my app. The first activity acquires a wakelock that is still present even when this activity is destroyed. This activity also sets an alarm whcih starts the second activity. I want the second activity to release the wakelock that was acquired by the first activty.

So bassically:

First activity acquires wakelock >> First activity is destroyed >> Wakelock still acquired >> canender (alarm) opens a new activity (Second Activity) >> Second activity releases wakelock??

The question is how do i release a wakelock in a different activity to where the wakelock has been acquired?

This is the code i am using to acquire the wakelock in the first activity:

    WakeLock wl;
    PowerManager pM = (PowerManager)getSystemService(Context.POWER_SERVICE);
    wl = pM.newWakeLock(PowerManager.FULL_WAKE_LOCK, "wakeLock");
   wl.acquire();

Is there any code i could use to release the wakelock in the second activty?

  • 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-07T06:07:03+00:00Added an answer on June 7, 2026 at 6:07 am

    Store the wake lock in a static variable that both activities can access it. Like this:

    class Globals {
        public static WakeLock wakelock;
    }
    

    In your first activity:

    PowerManager pM = (PowerManager)getSystemService(Context.POWER_SERVICE);
    WakeLock wl = pM.newWakeLock(PowerManager.FULL_WAKE_LOCK, "wakeLock");
    wl.acquire();
    Globals.wakelock = wl; // Save in a place where it won't go
    

      // away when this Activity is done

    In your second activity:

    if (Globals.wakelock != null) {
        Globals.wakelock.release();
        Globals.wakelock = null; // We don't have a wake lock any more
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two packages in my app com.first.main and com.second.activity2. I have tried this
I have an app that so far consists of two Activities: The Main Menu
This is my situation. I have two activities: ONE and TWO. In TWO activity
I have a activity where I have two imagesViews. This to imagesViews has onClickListener,
I have two activities. In first I come to the second activity from first
So here I have this first time app I'm working on. When I run
I have two activities in my app. One is a list that is presented
I have two java files. In the first I have my activity which starts
I have a three-page/Activity setup/configuration piece to my app. I want to have two
If I have two activities in my app, one with listview and the other

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.