为什么绑定到另一个应用程序中的服务失败?显式意图使用字符串参数

时间:2015-01-30 00:17:57

标签: android android-intent

尝试使用Messenger为客户端执行ipc绑定到服务,如下所示。 http://developer.android.com/guide/components/bound-services.html#Lifecycle

我的服务是在com.x. 激光中的LaserApp,客户端是com.x中的LaserClientActivity。 laserclient

该服务作为系统服务运行,我已经构建了客户端和服务,并使用相同的证书进行签名。

我收到错误:

  

W / ContextImpl(2468):在没有的情况下调用系统进程中的方法   合格用户:android.app.ContextImpl.bindService:1762   android.content.ContextWrapper.bindService:517   com.x.laserclient.LaserClientActivity.onStart:123   android.app.Instrumentation.callActivityOnStart:1171

  

android.app.Activity.performStart:5276 W / ActivityManager(2053):   无法启动服务Intent {cmp = com.x.laser / LaserApp} U = 0:不是   结果

请注意,Explicit intent使用字符串参数。

在客户端,我这样绑定:

@Override
protected void onStart() {
    super.onStart();
    // Bind to the service
    Intent i = new Intent();
    i.setClassName("com.x.laser", "LaserApp");
    // i.setClassName(this, LaserApp.class);
    Log.d(TAG, "bind to LaserApp ");
    bindService(i, mConnection,
        Context.BIND_AUTO_CREATE);
}

提供服务的应用程序已经显示:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.x.laser"
    android:sharedUserId="android.uid.system" >

    <uses-sdk
        android:minSdkVersion="19"
        android:targetSdkVersion="19" />

    <application
        android:name=".StartlaserApp"
        android:allowBackup="true"
        android:icon="@drawable/laser_icon"
        android:label="@string/app_name"
        android:persistent="true"
        android:theme="@style/AppTheme" >

        <service android:name=".LaserApp"
        android:exported="true"/>

        <activity
            android:name=".MainLauncher"
            android:label="@string/main_launcher" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity> 
    </application>

</manifest>

客户端清单是:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.x.laserclient"
    android:sharedUserId="android.uid.system"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="19"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".LaserClientActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

更新:我必须使用完全限定的组件名称,使客户端作为相同的用户ID - 系统运行,并使用相同的证书进行签名才能使其正常工作。但对我来说,这削弱了任何客户端都可以绑定到服务的概念。我不明白,但我的直接目的是服务

1 个答案:

答案 0 :(得分:3)

替换它:

i.setClassName("com.x.laser", "LaserApp");

用这个:

i.setClassName("com.x.laser", "com.x.laser.LaserApp");

&#34;班级名称&#34; Component的一部分必须完全合格。