我一直试图绑定从活动启动时启动的服务。启动时启动的代码大部分来自instant messenger
这是3个主要组件的androidmanifest.xml定义:

    <!-- Receiver -->
    <receiver android:name=".receiver.LifestylePPAutoStarter"
        android:process="android.process.lifestylepp">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED"/>
        </intent-filter>
    </receiver>

    <!-- Service -->
    <service android:name=".service.LifestylePPService"
        android:process="android.process.lifestylepp"
        android:enabled="true"
        android:exported="true">
        <intent-filter>
            <action android:name="edu.gatech.lifestylepp.ILifestylePPService" />
            <action android:name="edu.gatech.lifestylepp.SERVICE" />
        </intent-filter>
    </service>

    <!-- Activity -->
    <activity android:name=".app.LifestylePPActivity"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

接收器在启动时启动服务,没有任何问题。但是,当我尝试从活动绑定服务时,context::bind service返回true,但serviceconnection::onserviceconnected从未调用。另外,当我从活动启动服务时,它会按预期工作(调用serviceconnection::onserviceconnected)。

最佳答案

而且,当我从
它按预期工作的活动
(ServiceConnection::OnServiceConnect已连接
被称为。
startService()不涉及对象。
从清单中删除ServiceConnection行。这可能是你困难的根源,更重要的是,你不太可能真的需要两个过程和所有需要的开销。

10-07 13:06