gpt4 book ai didi

Android 在启动时启动服务,设备重启后如何重启服务类?

转载 作者:IT老高 更新时间:2023-10-28 13:03:06 31 4
gpt4 key购买 nike

我需要在启动时启动一项服务。我搜索了很多。他们正在谈论广播接收器。由于我是 android 开发的新手,所以我对 Android 上的服务没有清楚的了解。请提供一些源代码。

最佳答案

你的接收者:

public class MyReceiver extends BroadcastReceiver {   

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

Intent myIntent = new Intent(context, YourService.class);
context.startService(myIntent);

}
}

您的 AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.broadcast.receiver.example"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">

<activity android:name=".BR_Example"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<!-- Declaring broadcast receiver for BOOT_COMPLETED event. -->
<receiver android:name=".MyReceiver" android:enabled="true" android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>

</application>

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

</manifest>

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

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