在程序里浏览网页/Webview的使用

在说明Android--在程序里浏览网页/Webview的使用实例之前,首先给出程序的运行截图:

在程序里浏览网页/Webview的使用

在程序里浏览网页/Webview的使用

在程序中需要一个Webview控件用于显示网页,下方的两个按钮一个是回到前一页,一个是去往下一页,保存在混村中。

下面给出程序的实现代码:

1.布局文件

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
  xmlns:android=""
  android:orientation="vertical"

android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >

<!-- 建立一個EditText -->
  <!-- 建立一個ImageButton -->
  <!-- 建立一個WebView -->

<EditText
      android:id="@+id/myEditText1"
      android:layout_width="267px"
      android:layout_height="60px"
      android:layout_x="13dp"
      android:layout_y="38dp"
      android:ems="10"
      android:textSize="18sp" />

<ImageButton
      android:id="@+id/myImageButton1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_x="206dp"
      android:layout_y="38dp"
      android:background="@drawable/white"
      android:src="@drawable/go" />

<WebView
      android:id="@+id/myWebView1"
      android:layout_width="match_parent"
      android:layout_height="340dp"
      android:layout_x="0dp"
      android:layout_y="79dp"
      android:background="@drawable/black"
      android:focusable="false" />

<Button
      android:id="@+id/buttonback"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_x="38dp"
      android:layout_y="426dp"
      android:text="Back  " />

<Button
      android:id="@+id/buttonfoward"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_x="179dp"
      android:layout_y="426dp"
      android:text="Forward" />
 
</AbsoluteLayout>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/b94f12426dd71fea6a0b540834f3d21b.html