绑定到嵌套的单独服务

时间:2015-01-31 11:06:54

标签: android service process nested

假设有一个应用程序。" myapp"。 在单独的过程中提供服务。" myservice"。
    过程=":为MyService&#34 ;. 分离服务中的第二项服务。 " secondservice&#34 ;.

process=":myservice".  

两个服务是
    exported =" true"。

inputPinCodeIntent = new Intent(context, EnterCodeActivity.class);
inputPinCodeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(inputPinCodeIntent);  
在EnterCodeActivity中

获取代码并使用

Messenger messenger = new Messenger();
messenger.send(m);  

向" secondservice"发送消息。 但是没有得到消息。 我正在运行像

这样的服务
final Intent serviceIntent = new Intent(this, PincodeCreditionalInput.class);
bindService(serviceIntent, serviceConnection, BIND_AUTO_CREATE);  

in" onStart"事件。 有人可以帮忙吗?

感谢。

0 个答案:

没有答案