我在 textview 中有“打开链接http://www.google.com以查找任何内容”的文本。我在我的类文件中设置的文本。所以,当我点击这个链接时。链接在浏览器中打开。我想在我的网页视图中打开这个链接。我怎样才能做到这一点?我的 xml 文件是
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="444dp" />