gpt4 book ai didi

android - 在浏览器上加载网页而不是在 Activity 中加载 Webview

转载 作者:行者123 更新时间:2023-12-02 10:27:11 25 4
gpt4 key购买 nike

在我的 xml 文件中,我有文本,在该文本下方,我放置了一个 WebView 。我正在尝试在 Webview 中打开 google 主页。网页不是在 webview 中打开,而是在浏览器上打开。我想要的是网页应该在 webview 中加载,该 webview 位于某些文本下方。下面是我的代码:

           <TextView
android:id="@+id/txt"

android:text="Hello Android"
android:textSize="30sp"
android:textStyle="bold"
android:textColor="#003399"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerHorizontal="true"
/>

<WebView

android:id="@+id/webview"
android:layout_marginTop="50dp"
android:layout_below="@id/txt"
android:layout_height="fill_parent"
android:layout_width="fill_parent"/>

请帮忙解决这个问题,谢谢

最佳答案

这是因为两件事的结合:

  1. WebViewClient 未设置(设置为 null),这使得 WebView 尝试将每个导航作为 Intent 提供给系统。由于您安装了浏览器,系统将尝试在那里处理该导航。
  2. 访问 google.com 通常会导致重定向,这就是为什么上一点中有关导航的内容很重要。

试试这个:

webview = (WebView) findViewById(R.id.webview);
webview.setWebViewClient(new WebViewClient());

关于android - 在浏览器上加载网页而不是在 Activity 中加载 Webview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20194035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com