1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| package com.jetshine.room_flat_moudle.service; import android.annotation.SuppressLint; import android.app.KeyguardManager; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.PowerManager; import android.util.Log;
import com.jetshine.room_flat_moudle.MainActivity; /** * Created by shinelon on 2018/9/18. */
public class StartupReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Log.i("jjc",intent.getAction());
//开机后一般会停留在锁屏页面且短时间内没有进行解锁操作屏幕会进入休眠状态,此时就需要先唤醒屏幕和解锁屏幕 //屏幕唤醒 PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE); @SuppressLint("InvalidWakeLockTag") PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.ACQUIRE_CAUSES_WAKEUP | PowerManager.SCREEN_DIM_WAKE_LOCK, "StartupReceiver");//最后的参数是LogCat里用的Tag wl.acquire();
//屏幕解锁 KeyguardManager km= (KeyguardManager) context.getSystemService(Context.KEYGUARD_SERVICE); KeyguardManager.KeyguardLock kl = km.newKeyguardLock("StartupReceiver");//参数是LogCat里用的Tag kl.disableKeyguard();
//开机启动 Intent mainIntent = new Intent(context, MainActivity.class); //在BroadcastReceiver中显示Activity,必须要设置FLAG_ACTIVITY_NEW_TASK标志 mainIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(mainIntent); } }
|