计算机学院研发第二轮考核-------浏览器之界面

一个浏览器最基本的功能当然是浏览网页。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>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值