Android keeps the screen bright and awake

Source: Internet
Author: User

Step 1: First add permissions:

 

Step 2: implement the Code 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();       }   }
Note: calling the WakeLock function at different lifecycles can make the system run normally (if the Activity ends without calling WakeLock. release, the screen will always be on ).

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.