且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在android手机重新启动我的服务

更新时间:2023-02-26 22:22:43

请确保u必须在AndroidManifest文件的权限:

Make Sure u have the permission in AndroidManifest File :

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

更改为:

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