一个浏览器最基本的功能当然是浏览网页。android中提供了一个功能强大的WebView的控件。暂且不讨论WebView的强大,先说界面。
先是一个输入网址的文本框,还有就是一个可以响应点击事件的跳转按钮,接下来就是一个webview的控件,用来显示你浏览网页的可见返回,接下来就是一个前进,后退,多窗口,菜单,主页的按钮。
另外控件的图片建议在把百度的apk包改后缀成压缩包,解压出来,在里面的某个文件夹有很多不多的图片,uc的话个人找了下但是找不到需要在界面的图片,可能是我找不到。
但是图标是拿uc的。
代码如下。
<?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:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical" >
<ProgressBar
android:id="@+id/sb"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/go"
android:layout_width="29dp"
android:layout_height="30dp"
android:background="@drawable/go" />
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/url"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/input"
android:hint="输入网址"
android:singleLine="true" />
</LinearLayout>
<WebView
android:id="@+id/show"
android:layout_width="316dp"
android:layout_height="275dp"
android:layout_weight="1.10" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="22dp"
android:layout_weight="0.08"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" " />
<Button
android:id="@+id/back"
android:layout_width="47dp"
android:layout_height="match_parent"
android:background="@drawable/toolbar_backward" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" " />
<Button
android:id="@+id/forward"
android:layout_width="46dp"
android:layout_height="match_parent"
android:background="@drawable/toolbar_forward" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" " />
<Button
android:id="@+id/multwindow"
android:layout_width="32dp"
android:layout_height="match_parent"
android:background="@drawable/toolbar_multiwindow" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" " />
<Button
android:id="@+id/menu"
android:layout_width="27dp"
android:layout_height="match_parent"
android:background="@drawable/toolbar_menu" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" " />
<Button
android:id="@+id/homepage"
android:layout_width="36dp"
android:layout_height="match_parent"
android:background="@drawable/toolbar_homepage" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" " />
</LinearLayout>
</LinearLayout>