本文主要是介绍bindService不能触发onServiceConnected方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在android项目中用到AIDL,今天碰到了一个诡异的问题,花费了半天的时间终于解决了。具体原因有待细究
bindService( service, connection, BIND_AUTO_CREATE ) 之后一直不调用
connection中的onServiceConnected方法
复查了很多容易出错的问题(有问题的童鞋可以复查下面几条):
1、服务器端的service声明,要和客户端bindService的第一个参数匹配,不然客户端启动不了这个服务。
<service
android:name="com.eebbk.keywordsearch.ExamCommentService"
android:process=":remote" >
<intent-filter>
<!-- AIDL完整路径名。必须指明,客户端能够通过AIDL类名查找到它的实现类 -->
<action android:name="com.eebbk.keywordsearch.ITestService" />
</intent-filter>
</service>
2、服务器端service必须 return实现AIDL接口ITestService.Stub 的binder
@Override
public IBinder onBind( Intent intent )
{
// TODO Auto-generated method stub
return binder; // 返回AIDL接口实例化对象;
}
3、如果前面两种方法都没有解决,那么很有可能就是我要提到的这个问题了,往下看
我的问题代码如下:
这篇关于bindService不能触发onServiceConnected方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!