应用程序不会绑定到服务

时间:2014-12-03 21:52:13

标签: android service bind

我有一个应用程序A,它必须绑定到另一个包中的服务。我已经放置了一个自定义意图过滤器,以使其工作。可悲的是,应用程序不会绑定。日志说它无法找到服务。

应用程序A在包" com.example.app_a" 该服务位于另一个软件包中,并且#34; com.example.app_talker_service"

所以我无法使用xxx.class解决方案来引用该服务,因此我的猜测是在服务包的清单文件中使用intent过滤器。

另一方面,应用程序A需要对服务进行绑定以使其启动(如果它还没有启动),并且稍后它将通过使用广播接收器与它通信。我做了一些实验,我注意到广播工作正常,但是由于某些原因,应用程序A似乎无法在绑定期间找到我的服务....

这是应用程序A的代码,它绑定在onStart():

    @Override
protected void onStart() 
{
    // TODO Auto-generated method stub
    super.onStart();

    //Bind to service
    getApplicationContext().bindService(new Intent("com.example.talker_service.SERVICE"), mConnection,Context.BIND_AUTO_CREATE);


}
    private boolean mIsBound = false;

private ServiceConnection mConnection = new ServiceConnection()
{

    @Override
    public void onServiceConnected(ComponentName name, IBinder service) {
        // TODO Auto-generated method stub
        mIsBound = true;
        Toast.makeText(getApplicationContext(), "CONNECTED TO SERVICE!", Toast.LENGTH_SHORT).show();

         Intent intent = new Intent();
         intent.setAction("com.example.talker_service.SERVICE");
         intent.putExtra("REQUEST", "REGISTER APP");

         intent.putExtra("FILTER", "com.example.app_a");
         intent.putExtra("NAME", "Applicazione A");

         String[] components = {"NUMBER_SENT","CHANGE_TEXT_COLOR","CHANGE_TEXTVIEW_SIZE"};
         intent.putExtra("COMPONENTS", components);

         MainActivityA.this.sendBroadcast(intent);
    }

    @Override
    public void onServiceDisconnected(ComponentName name) {
        // TODO Auto-generated method stub
        mIsBound = false;
    }

};

这里是服务的cmanifest,我称之为Talker_service:

    en<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.app_talker_service"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <service
            android:name=".Talker_Service"
            android:enabled="true"
            android:exported="true"
            android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE" >
            <intent-filter >
                <action android:name="com.example.talker_service.SERVICE"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <data android:mimeType="text/plain" />
            </intent-filter>
        </service>

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

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

</manifest>

我没有取消和为什么它没有绑定..我把意图过滤器,我错过了什么?啊,日志说明了这一点:

  

12-03 22:45:13.786:W / ContextImpl(26076):使用startService的隐式意图是   不安全:意图{   act = com.example.talker_service.SERVICE}   android.content.ContextWrapper.bindService:517   com.example.app_a.MainActivityA.onStart:81   android.app.Instrumentation.callActivityOnStart:1171       12-03 22:45:13.786:W / ActivityManager(764):无法启动服务Intent {&gt; act = com.example.talker_service.SERVICE} U = 0:not not   结果

这是应用程序A的清单文件

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.app_a"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="19" />
    <uses-permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE" ></uses-permission>
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivityA"
            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>

1 个答案:

答案 0 :(得分:0)

我不知道为什么使用意图过滤器不起作用(它说它找不到它)但是通过使用以下代码我能够使我的应用程序连接到远程服务:

Intent i = new Intent();
    i.setClassName("com.example.app_talker_service", "com.example.app_talker_service.Talker_Service");
    bindService(i, conn, Context.BIND_AUTO_CREATE);

所以使用seClassName方法并提供pacake的名称和服务的完整路径,我能够使它工作。我不确定这是否属于这类问题的“最佳实践”领域,但对我而言,它是有效的。任何解决方案都胜过没有解决方案。我发现这个解决方案适用于这个链接:

Remote Service Tutorial