android-如何在手机开机时自动运行应用程序

任何人都可以给我代码或链接或概念,以便在android设备上自动运行android应用程序.每当设备打开时,应用程序应自行启动,而不会受到用户的干扰.

谢谢..

解决方法:

您需要声明一个广播监听器,以监听RECEIVE_BOOT_COMPLETED

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

在您的听众中:

Intent myStarterIntent = new Intent(context, YOUR_CLASS_TO_START.class);
/* Set the Launch-Flag to the Intent. */
myStarterIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
myStarterIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
/* Send the Intent to the OS. */
context.startActivity(myStarterIntent);

使用上述想法的另一个示例:auto start app

上一篇:web项目——org.apache.jasper.JasperException: /WEB-INF/content/mainForm.jsp (line: 3, column: 62) File "/WEB-INF/c.tld" not found


下一篇:响应式编程是一种异步的、声名式的、面向数据流的编程范式