テキストビューに「リンクhttp://www.google.comを開いて何かを検索する」というテキストがあります。クラスファイルに設定したテキスト。SO、このリンクをクリックすると。リンクはブラウザで開きます。このリンクを Web ビューで開きたい。これどうやってするの?私の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" />