我想在安装后在后台运行我的 android 应用程序。我试着在后台运行应用程序。但是我必须在重新启动设备后自己启动应用程序。我需要的是我需要像 FACEBOOK 一样使用我的应用程序,whatsapp 正在做。据我所知,它们永远在后台运行,每次重启后都不需要手动重启。有人来帮助我吗?
2 回答
侃侃无极
TA贡献2051条经验 获得超10个赞
在 AndroidManifest.xml 中
<receiver android:name=".BootUpReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
创建以 BootUpReceiver 命名的 Java 文件
public class BootUpReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
//Do your coding here...
}
}
}
添加回答
举报
0/150
提交
取消