gpt4 book ai didi

android - Android设备开机时如何启动服务?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:50:34 24 4
gpt4 key购买 nike

如何在 Android 设备开启且操作系统正在运行时启动服务

最佳答案

添加到AndroidManifest.xml:

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

<service android:name=".YourService" />

<receiver android:name="com.your.package.AutoStart">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>

创建类 AutoStart.java:

public class AutoStart extends BroadcastReceiver
{

@Override
public void onReceive(Context context, Intent intent)
{
Intent startServiceIntent = new Intent(context, YourService.class);
context.startService(startServiceIntent);
}

}

关于android - Android设备开机时如何启动服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7668836/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com