Android服务无法启动

时间:2012-11-29 16:10:19

标签: android android-service

我尝试将一项服务添加到我的Android应用程序,但该服务根本不会启动。我将它添加到我的android清单中,以便它在自己的进程中启动并创建一个broadcastreceiver,它应该在BOOT_COMPLETED之后启动服务。

这是我清单的部分

    <service android:process=":attachServiceBackground"
             android:name=".AttachService"
             android:icon="@drawable/camera"
             android:label="@string/attachServiceName" />

    <receiver android:name="AttachmentStartupReceiver"
                android:process=":attachServiceBackground">
        <intent-filter >
            <action android:name="android.intent.action.BOOT_COMPLETED"></action>      
        </intent-filter>

        </receiver>

我的服务......只是添加了日志记录

public class AttachService extends Service {
    private static final String TAG = AttachService.class.getSimpleName();


    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public void onCreate() {
        super.onCreate();
        Log.d(TAG, "onCreate service");

    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Log.d(TAG, "onDestroy");
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.d(TAG, "onStartCommand");
        return super.onStartCommand(intent, flags, startId);
    }   
}

我的BroadCastReceiver

public class AttachmentStartupReceiver extends BroadcastReceiver {

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

我无法看到服务在启动设备后启动,日志中没有“oncreate service”,我也查看了Settings-&gt; Applications-&gt; Running Services。 有人知道我弄错了吗?

由于

1 个答案:

答案 0 :(得分:5)

您需要将以下权限添加到清单文件

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

BOOT_COMPLETED默认情况下不发送广播。