切换TABS时刷新WEBVIEW
我在 TabView 中嵌入了 3 个不同的 WebView。当我切换到不同的选项卡时,如何刷新我离开的 WebView?谢谢。
I have 3 different WebViews embedded in TabViews. How can I refresh the WebView I am leaving when I switch to a different tab? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 OnTabChangeListener ,然后重新加载您的 webview 。
use the OnTabChangeListener and then reload your webview on the hook.
当您切换到 webView 选项卡时,您必须重新加载 Activity。它将重新加载网络视图,问题将得到解决。只需将此标志添加到 tabspec 活动声明中:.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)。
You have to reload activity when you switch to the webView tab. It will reload the webview and the issue would be solved. just add this flag to the tabspec activity declaration: .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP).
谢谢大家,我通过使用弄清楚了
if("TAB_1".equals(tabId)) {
// 代码在这里
}
Thanks guys I figured it out by using
if("TAB_1".equals(tabId)) {
// code here
}