Android auto-start demo

Source: Internet
Author: User

Package com. example. openstart; import android. app. keyguardManager; import android. app. keyguardManager. keyguardLock; import android. content. broadcastReceiver; import android. content. context; import android. content. intent; import android. util. log; public class MPUStartBroadcastReceiver extends BroadcastReceiver {/*** receives broadcast completed by system startup **/@ Overridepublic void onReceive (Context context, Intent intent) {// cancel KeyguardManager mKeyguardManager = (KeyguardManager) context. getSystemService (Context. KEYGUARD_SERVICE); KeyguardLock mKeyguardLock = mKeyguardManager. newKeyguardLock ("MainActivity"); mKeyguardLock. disableKeyguard (); intent = new Intent (context, MainActivity. class); intent. setFlags (Intent. FLAG_ACTIVITY_NEW_TASK); context. startActivity (intent); // start intention }}

Manifest. xml configuration

Register and receive system startup Broadcast

             
                                  
                   
               
          
 
Add Permissions

  
     
 

RECEIVE_BOOT_COMPLETED system starts broadcasting

DISABLE_KEYGUARD allows the program to disable the keyboard lock



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.