Android TabActivity中的子Tab Activity 无法正常 bindService 之 解决方法

 

 

 

本文转自: http://hi.baidu.com/runsheng2005/blog/item/5ac6af09203f82d63ac76371.html

 

如果使用 TabActivity来进行开发,并且程序需要针对TabActivity中TabHost中的每一个Activity单独绑定一个Service,通 常做法是在对应Tab页的Activity的onCreate()方法中进行bind service 操作,但是通过实践表明这个方法是无法达到绑定效果,Google Android Issue中有这个缺陷,缺陷详细信息在这里(Google Android Issue 2483)

 

解决方法:

Using getApplicationContext().bindService instead of just bindService on your activity solves the problem as it is using the higher level application context.

 

即在 TabActivy的TabHost中的Activity如果需要bindService的话,需要先调用 getApplicationContext()获取其所属的Activity的上下文环境才能正常bindService,也就是在 onCreate()方法中使用this.getApplicationContext().bindService([args…])就可以了,否则 bindService将永远失败返回false,remote service 返回也为null。

你可能感兴趣的:(bindService,TabActivity)