从不同的包装推出服务

时间:2012-07-23 15:40:41

标签: android service launch

我尝试制作一个项目,我有一个活动和一个来自不同包的服务。我把这两个包放在一个项目中。

我把活动放在:com.idris.activity中,我把服务放在:com.idris.activity.service

我尝试从MyActivity中的按钮侦听器调用MyService,如下所示:

Intent myIntent = new Intent(getApplicationContext(), MyService.class);
                 myIntent.putExtra("extraData", "somedata");
                 startService(myIntent);

应用程序的清单

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="idris.parental.monitor"
    android:versionCode="1"
    android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".MyActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <service
            android:name=".MyService"
            android:enabled="true" />
    </application>
</manifest>

MyService无法启动,我做了什么?

2 个答案:

答案 0 :(得分:3)

在你的清单中使用它:

<service
    android:name=".service.MyService"
    android:enabled="true" />

确保您在package name文件中对service使用了正确的manifest。如果MyService.java文件位于com.idris.activity.service包中,请使用:

<service android:name="com.idris.activity.service.MyService" />

答案 1 :(得分:0)

似乎你的root pkg名称是 package =“idris.parental.monitor”所以你的服务类pkg名称必须包含这些作为根路径然后在清单中你可以指定为

例如

服务pkg服务。 即idris.parental.monitor.service

在manifest .service.urservicename