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。 

你可能感兴趣的:(java,工作)