Android keeps the screen solid awake state

Source: Internet
Author: User

First step: Add Permissions First:

<uses-permission android:name= "Android.permission.WAKE_LOCK" ></uses-permission>

The second step: the code is implemented as follows:

public class Screenactivity extends Activity   {        PowerManager powermanager = null;        WakeLock WakeLock = null;        @Override        protected void onCreate (Bundle savedinstancestate) {            super.oncreate (savedinstancestate);            This.setcontentview (r.layout.main);            PowerManager = (PowerManager) This.getsystemservice (this. Power_service);            WakeLock = This.powerManager.newWakeLock (Powermanager.full_wake_lock, "My LOCK");       }       @Override       protected void Onresume () {           super.onresume ();           Wakelock.acquire ();       }       @Override       protected void OnPause () {           super.onpause ();           Wakelock.release ();       }   }
The last note: calling the Wakelock function in a different life cycle can make the system run normally (if the activity ends without calling wakelock.release, the screen will always be solid).

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.