Android Activity 无法绑定到服务
我设法将活动连接到服务并且运行正常。这是我在应用程序中的第一个活动。但是,如果我进行(无论是否绑定到第一个活动中的服务),下一个活动(位于选项卡中)将不会绑定到该服务。
请注意,如果我将制造麻烦的活动作为我在应用程序中的第一个活动,那么它就可以正常工作。
关于可能导致 pb 的任何提示?两个活动中的代码是相同的。 可能是因为标签? 我是否需要设置任何特定的意图过滤内容>? (我只有模板附带的默认意图过滤)
谢谢。 亚历克斯
I managed to connect an activity to a service and it runs ok. This is my first activity in the application. However, if i progress (with or without binding to the service in the first activity), the next activity (resides in a tab) will not bind to the service.
note that if i make the trouble-making activity to be my first in the app, it works fine.
any hints on what might cause the pb? the code in the 2 activities is the same.
might it be because of the tabbing?
do i need to setup any particular intent filtering stuff>? (i only have the default intent filtering that comes with the template)
Thanks.
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
显然这是一个已知问题:
http://code.google.com/ p/android/issues/detail?id=2665
apparently this is a known issue:
http://code.google.com/p/android/issues/detail?id=2665
作为解决方法,您可以使用 getApplicationContext().{bindService,unbindService}
As a workaround, you can use getApplicationContext().{bindService,unbindService}