編集済み-画像リンク: http ://tinypic.com/view.php?pic = 4qir6v&s = 6
写真のように、webviewで簡単なWebブラウザを作成しました。サイトをクリックするか、テキスト列([GO]ボタンの左側)にURLを入力することで、Webサイトをうまくナビゲートできますが、Webビュー内に書き込むことはできません。つまり、写真にあるように検索ボックスに書き込むことができません。
これは私のレイアウトです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="10" >
<EditText
android:id="@+id/etURL"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2" >
</EditText>
<Button
android:id="@+id/bGo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="8"
android:text="Go" >
</Button>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="8" >
<Button
android:id="@+id/bBack"
android:layout_width="115dp"
android:layout_height="wrap_content"
android:text="Back" >
</Button>
<Button
android:id="@+id/bForward"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Forward" >
</Button>
<Button
android:id="@+id/bRefresh"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="8"
android:text="Refresh" >
</Button>
</LinearLayout>
<WebView
android:id="@+id/WebEngine"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="17.26" />
</LinearLayout>