android开机自启动app示例分享

前端技术 2023/09/06 Android

复制代码 代码如下:

/*开机自动启动APP*/
public class BootReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {

Log.d(\"XRGPS\", \"BootReceiver.onReceive: \" + intent.getAction());
if (ACTION_BOOT_COMPLETED.equals(intent.getAction())) {
           Intent mBootIntent = new Intent(context, MainActivity.class);
           mBootIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
           context.startActivity(mBootIntent); 
    } else {
        Log.w(\"XRGPS\", \"BootReceiver: unsupported action\");
    }
}
}

本文地址:https://www.stayed.cn/item/16331

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。