向 TabHost 发送信号以重新加载视图
我有一个包含在 TabHost 的 FrameLayout 内的视图。如何以编程方式告诉 TabHost 重新加载请求它的同一视图?类似于 html 中的“重置”。
谢谢
I have a view that's contained inside a TabHost's FrameLayout. How can I programmatically tell the TabHost to reload the same view that's requesting it ? Something like "reset" in html.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 LocalActivityManager 访问您的
Tab
并且您可以通过getLocalActivityManager()
访问它。在
LocalActivityManager
中,有两个可用的方法,即destroyActivity()
和startActivity()
。这里
tabid
是 < code>String 已在TabHost.newTabSpec(tabid)) 中使用。
You can access your
Tab
by using LocalActivityManager and and you can access this viagetLocalActivityManager()
.In
LocalActivityManager
there are two methods available namelydestroyActivity()
andstartActivity()
..Here
tabid
is theString
which has been used inTabHost.newTabSpec(tabid)).