Android--MessengerとService
10439 ワード
サービスや他のプロセスとの通信が必要な場合は、Messengerを使用してこのインタフェースを提供することができます.
この方法では、AIDLを使用せずに、プロセス間通信IPCを行うことができます.
実装手順
次はMessengerの使い方のまとめです.
1. サービスは、Handlerがクライアントから呼び出されるたびにコールバックを受信することを実現する.
2. Handlerは、Handlerの参照であるMessengerオブジェクトを作成するために使用されます.
3. MessengerはIBinderを作成し、サービスはonBind()からクライアントに返されます.
4. クライアントはこのIBinderを使用してMessenger(serviceのHandlerの参照)をインスタンス化し、クライアントはそれを使用してMessageオブジェクトをserviceに送信する.
5. サービスは、handleMessage()メソッドで各MessageオブジェクトをHandlerで受信します.
Code
注意HandlerのhandleMessage()メソッドは、サービスが到来したMessageを受信し、何をするかを決定する場所である.
クライアントが行う必要があるのは、サービスに基づいて返されるIBinderのMessengerを作成し、send()メソッドで情報を送信することだけです.
たとえば、ここには単純なactivityとserviceがバインドされ、serviceに情報を送信します.
この例では、サービスがクライアントにどのように応答するかは示されていません.サービス応答を望む場合は、クライアントにMessengerを作成する必要があります.
その後、クライアントがonServiceConnected()コールバックメソッドを受信すると、send()メソッドのreplyToパラメータにクライアントのMessengerが含まれたMessageがサービスに送信されます.
天王ゲジトラの分割線です
参照先:http://www.cnblogs.com/mengdd/tag/Android/default.html?page=4
この方法では、AIDLを使用せずに、プロセス間通信IPCを行うことができます.
実装手順
次はMessengerの使い方のまとめです.
1. サービスは、Handlerがクライアントから呼び出されるたびにコールバックを受信することを実現する.
2. Handlerは、Handlerの参照であるMessengerオブジェクトを作成するために使用されます.
3. MessengerはIBinderを作成し、サービスはonBind()からクライアントに返されます.
4. クライアントはこのIBinderを使用してMessenger(serviceのHandlerの参照)をインスタンス化し、クライアントはそれを使用してMessageオブジェクトをserviceに送信する.
5. サービスは、handleMessage()メソッドで各MessageオブジェクトをHandlerで受信します.
Code
public class MessengerService extends Service
{
/** Command to the service to display a message */
static final int MSG_SAY_HELLO = 1;
/**
* Handler of incoming messages from clients.
*/
class IncomingHandler extends Handler
{
@Override
public void handleMessage(Message msg)
{
switch (msg.what)
{
case MSG_SAY_HELLO:
Toast.makeText(getApplicationContext(), "hello!",
Toast.LENGTH_SHORT).show();
break;
default:
super.handleMessage(msg);
}
}
}
/**
* Target we publish for clients to send messages to IncomingHandler.
*/
final Messenger mMessenger = new Messenger(new IncomingHandler());
/**
* When binding to the service, we return an interface to our messenger for
* sending messages to the service.
*/
@Override
public IBinder onBind(Intent intent)
{
Toast.makeText(getApplicationContext(), "binding", Toast.LENGTH_SHORT)
.show();
return mMessenger.getBinder();
}
}
注意HandlerのhandleMessage()メソッドは、サービスが到来したMessageを受信し、何をするかを決定する場所である.
クライアントが行う必要があるのは、サービスに基づいて返されるIBinderのMessengerを作成し、send()メソッドで情報を送信することだけです.
たとえば、ここには単純なactivityとserviceがバインドされ、serviceに情報を送信します.
public class ActivityMessenger extends Activity
{
/** Messenger for communicating with the service. */
Messenger mService = null;
/** Flag indicating whether we have called bind on the service. */
boolean mBound;
/**
* Class for interacting with the main interface of the service.
*/
private ServiceConnection mConnection = new ServiceConnection()
{
public void onServiceConnected(ComponentName className, IBinder service)
{
// This is called when the connection with the service has been
// established, giving us the object we can use to
// interact with the service. We are communicating with the
// service using a Messenger, so here we get a client-side
// representation of that from the raw IBinder object.
mService = new Messenger(service);
mBound = true;
}
public void onServiceDisconnected(ComponentName className)
{
// This is called when the connection with the service has been
// unexpectedly disconnected -- that is, its process crashed.
mService = null;
mBound = false;
}
};
public void sayHello(View v)
{
if (!mBound)
return;
// Create and send a message to the service, using a supported 'what'
// value
Message msg = Message
.obtain(null, MessengerService.MSG_SAY_HELLO, 0, 0);
try
{
mService.send(msg);
}
catch (RemoteException e)
{
e.printStackTrace();
}
}
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
protected void onStart()
{
super.onStart();
// Bind to the service
bindService(new Intent(this, MessengerService.class), mConnection,
Context.BIND_AUTO_CREATE);
}
@Override
protected void onStop()
{
super.onStop();
// Unbind from the service
if (mBound)
{
unbindService(mConnection);
mBound = false;
}
}
}
この例では、サービスがクライアントにどのように応答するかは示されていません.サービス応答を望む場合は、クライアントにMessengerを作成する必要があります.
その後、クライアントがonServiceConnected()コールバックメソッドを受信すると、send()メソッドのreplyToパラメータにクライアントのMessengerが含まれたMessageがサービスに送信されます.
天王ゲジトラの分割線です
参照先:http://www.cnblogs.com/mengdd/tag/Android/default.html?page=4