Android's way of keeping the screen illuminated steady wake State _android

Source: Internet
Author: User

The example in this article describes how Android keeps the screen illuminated steady wake state. Share to everyone for your reference, specific as follows:

First step: Add Permissions First:

Copy Code code as follows:
<uses-permission android:name= "Android.permission.WAKE_LOCK" ></uses-permission>

Step Two: Code implementation is 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 (); 
  } 

Finally, calling the Wakelock function at different lifecycles can make the system work (if the activity ends without calling wakelock.release, the screen will always illuminated steady).

I hope this article will help you with the Android program.

Related Article

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.