0

如果我手动启动,我的 Android 应用程序中有一项服务可以完美运行,但是我需要在启动时启动该服务,并且我无法在重启手机后自动启动它,我尝试了几个教程但没有任何效果。

这是我的清单代码:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tvshowsguide"
android:versionCode="1"
android:versionName="1.0"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED" >

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

<application

    <service android:name="androidservice.SyncService" />

    <receiver android:name="androidservice.SyncAuto" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>
</application>

</manifest>

这是广播接收器代码:

public class SyncAuto extends BroadcastReceiver {
        public void onReceive(Context context, Intent intent) {

            Intent SyncService = new Intent(context, SyncService.class).setAction(SRVC);
            context.startService(SyncService);
        }
    }
}
4

1 回答 1

0

我认为问题一定是您的服务的参考,因为您有一个应用程序

 package="com.tvshowsguide"

您的服务和接收者必须具有如下名称:

 <service android:name="com.tvshowsguide.androidservice.SyncService" />
 <receiver android:name="com.tvshowsguide.androidservice.SyncAuto" >
于 2014-07-08T19:28:43.267 回答