首页 > 代码库 > Tabhost中Activity绑定Service
Tabhost中Activity绑定Service
在android中,一个Activity绑定一个Service组件我们一般用Context().bindService方法就能够。可是假设这个
Activity属于一个Tabhost的话就不行了,在网上查了一下,发如今Google Android Issue中有这个缺陷,缺陷具体信息在这里(Google Android Issue 2483),三楼的oliver给出了正解
Using getApplicationContext().bindService instead of just bindService on your
activity solves the problem as it is using the higher level application context.
也就是在 onCreate()方法中使用this.getApplicationContext().bindService([args…])就能够了,否则 bindService将永远失败返回false。
Using getApplicationContext().bindService instead of just bindService on your
activity solves the problem as it is using the higher level application context.
也就是在 onCreate()方法中使用this.getApplicationContext().bindService([args…])就能够了,否则 bindService将永远失败返回false。
Tabhost中Activity绑定Service
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。