保留 Android 中包含的 webView?

发布于 2024-11-09 18:03:12 字数 236 浏览 0 评论 0原文

大家好!我对 Android 还很陌生,我在屏幕上的其他 2 个小部件下有一个 webView(或者你称它为 w/e)。但是当我导航 webView 时,它会变为全屏,并且我看不到其他小部件。我查遍了谷歌,但找不到任何东西,有什么办法可以解决这个问题吗?

我使用此代码进行导航:

webView.loadUrl("http://www.example.com/");

谢谢。

Hey everyone! Im pretty new to Android and I have a webView under 2 other widgets on the screen(Or w/e you call it). But when ever I navigate the webView, its changes to full screen and i cant see my other widgets. Ive looked all over Google but couldn't find anything, is there some way I can fix this?

Im using this code to navigate:

webView.loadUrl("http://www.example.com/");

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由如风 2024-11-16 18:03:13
webview.setWebViewClient(new WebViewClient() {
    public boolean shouldOverrideUrlLoading(WebView view, String url){
        view.loadUrl(url);
        return true;
   }
});

当您执行 webView.loadUrl("www.example.com") 或单击超链接或类似操作时发生重定向时,Android 设备浏览器将启动。我相信你已经被这个问题困住了。尝试在调用 webView.loadUrl("www.example.com") 之前粘贴上面的代码,

我们本质上所做的是要求 webview 加载 url,而不是在设备浏览器中打开它。

webview.setWebViewClient(new WebViewClient() {
    public boolean shouldOverrideUrlLoading(WebView view, String url){
        view.loadUrl(url);
        return true;
   }
});

when you do webView.loadUrl("www.example.com") or if there is a redirection when a hyperlink is clicked or something similar, the android device browser is started. I believe you are stuck with this. Try pasting the above code before you call the webView.loadUrl("www.example.com")

What we are essentially doing is asking the webview to load the url, instead of opening it in the device browser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文