2016-09-27 8 views
3

Я создаю удаленную службу и клиентское приложение, настроенное на API 24, выполняющееся на устройстве Nexus 6P. У меня есть удаленная служба, которая автоматически запускается при загрузке. Вот фрагменты кода:Android: привязка к удаленному сервису

Дистанционное обслуживание Manifest

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
      package="a.b.c"> 

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

    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 

     <receiver 
      android:name=".MyBroadcastReceiver" 
      android:enabled="true" 
      android:exported="true"> 
      <intent-filter> 
       <action android:name="android.intent.action.BOOT_COMPLETED" /> 
      </intent-filter> 
     </receiver> 

     <service android:name=".MyService" > 
      <intent-filter> 
       <action android:name="a.b.c.MY_INTENT" /> 
      </intent-filter> 
     </service> 

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

</manifest> 

Дистанционное обслуживание

package a.b.c; 

import android.app.Service; 
import android.content.Intent; 
import android.os.IBinder; 

public class MyService extends Service 
{ 
    @Override 
    public IBinder onBind(Intent intent) { 
     return null; 
     // EDIT: see StackOverflow answers/comments below: 
     // Returning an IBinder here solves the problem. 
     // e.g. "return myMessenger.getBinder()" where myMessenger 
     // is an instance of Android's Messenger class. 
    } 

    @Override 
    public void onCreate() { 
     super.onCreate(); 
    } 
} 

Дистанционное Broadcast Receiver

package a.b.c; 

import android.content.BroadcastReceiver; 
import android.content.Context; 
import android.content.Intent; 

public class MyBroadcastReceiver extends BroadcastReceiver { 
    @Override 
    public void onReceive(Context context, Intent intent) { 
     if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) { 
      Intent serviceIntent = new Intent(context, MyService.class); 
      context.startService(serviceIntent); 
     } 
    } 
} 

Удаленная активность (Android студия настаивает на там будучи активность)

package a.b.c; 

import android.os.Bundle; 
import android.support.v7.app.AppCompatActivity; 
import android.util.Log; 

public class MyActivity extends AppCompatActivity { 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.my_activity); 
    } 
} 

Я тогда отдельный проект для реализации клиентской активности в другом пакете, который пытается привязать к удаленному сервису. Вот фрагменты кода:

Client Manifest

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
      package="x.y.z"> 

    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 
     <activity android:name=".ClientActivity"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN"/> 
       <category android:name="android.intent.category.LAUNCHER"/> 
      </intent-filter> 
     </activity> 
    </application> 

</manifest> 

Client активность

package x.y.z; 

import android.app.ActivityManager; 
import android.content.ComponentName; 
import android.content.Context; 
import android.content.Intent; 
import android.content.ServiceConnection; 
import android.os.Bundle; 
import android.os.IBinder; 
import android.support.v7.app.AppCompatActivity; 
import android.util.Log; 

public class ClientActivity extends AppCompatActivity 
{ 
    private final String TAG = "ClientActivity"; 

    private ServiceConnection mMyServiceConnection = new ServiceConnection() { 
     @Override 
     public void onServiceConnected(ComponentName name, IBinder service) { 
      Log.d(TAG, "ServiceConnection onServiceConnected"); 
     } 

     @Override 
     public void onServiceDisconnected(ComponentName name) { 
      Log.d(TAG, "ServiceConnection onServiceDisconnected"); 
     } 
    }; 

    private boolean isServiceRunning(String className) { 
     ActivityManager manager = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE); 
     for (ActivityManager.RunningServiceInfo serviceInfo : manager.getRunningServices(Integer.MAX_VALUE)) { 
      if (className.equals(serviceInfo.service.getClassName())) { 
       return true; 
      } 
     } 
     return false; 
    } 

    private void bindMyService() { 
     Intent intent = new Intent("a.b.c.MY_INTENT"); 
     intent.setPackage("a.b.c"); 
     bindService(intent, mMyServiceConnection, Context.BIND_AUTO_CREATE); 
    } 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_client); 
     if (isServiceRunning("a.b.c.MyService")) { 
      bindMyService(); 
     } 
     else { 
      Log.e(TAG, "Service is not running"); 
     } 
    } 
} 

Функция "isServiceRunning" возвращает истину, так что я знаю, что a.b.c.MyService работает. Функция bindService кажется успешной (никаких ошибок в Logcat), но обратный вызов onServiceConnected никогда не выполняется.

Как связать с a.b.c.Myservice из x.y.z.ClientActivity в Android-SDK для Android 24?

Спасибо!

ответ

2

Я вижу, по крайней мере, 2 проблемы здесь:

1) Вы используете «неявное» Intent в вызове bindService() (т.е. вы не указали компонент явно). Это должно вызвать исключение, если вы нацеливаете API 21 или выше. Вы должны использовать «явный» Intent (то есть: указать имя пакета и имя класса Service).

2) Ваш Service возвращает null от onBind(). Это означает, что клиенты не смогут связываться с Service, потому что вы не возвращаете IBinder, который клиент может затем использовать для вызова методов в службе Service. Try to find a how-to or some example code for how to use bound.

+1

ad 1) не действительно: он вызывает 'намерение.setPackage (« a.b.c »);', то намерение получает «явное» – pskink

+0

@pskink действительно? Название пакета достаточно? Я не знал об этом, но готов исправиться. –

+0

Да, его достаточно, так как он ограничивает намерение явного пакета, конечно же, вам нужно сделать его «более явным», предоставив, например, действие, сделав это намерение уникальным, попробуйте его – pskink

 Смежные вопросы

  • Нет связанных вопросов^_^