看看哪里不对
源码:
1.SimpleBrowser.java
2.simplebrowser.xml
<?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:orientation=”horizontal”
android:weightSum=”10″
android:layout_width=”match_parent”
android:layout_height=”wrap_content”>
<EditText
android:layout_width=”match_parent”
android:layout_weight=”2″
android:layout_height=”wrap_content”
android:id=”@+id/etURL”/>
<Button
android:text=”GO”
android:id=”@+id/bGO”
android:layout_width=”match_parent”
android:layout_weight=”8″
android:layout_height=”wrap_content”/>
</LinearLayout>
<LinearLayout
android:orientation=”horizontal”
android:weightSum=”8″
android:layout_width=”match_parent”
android:layout_height=”wrap_content”>
<Button android:text=”Go Back”
android:id=”@+id/bBack”
android:layout_weight=”2″
android:layout_width=”match_parent”
android:layout_height=”wrap_content”/>
<Button android:text=”Forward”
android:id=”@+id/bForward”
android:layout_weight=”2″
android:layout_width=”match_parent”
android:layout_height=”wrap_content”/>
<Button android:text=”Refresh”
android:id=”@+id/bRefresh”
android:layout_weight=”2″
android:layout_width=”match_parent”
android:layout_height=”wrap_content”/>
<Button android:text=”Clear”
android:id=”@+id/bHistory”
android:layout_weight=”2″
android:layout_width=”match_parent”
android:layout_height=”wrap_content”/>
</LinearLayout>
<WebView
android:id=”@+id/wvBrowser”
android:layout_width=”match_parent”
android:layout_height=”match_parent” />
</LinearLayout>
多谢