Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 開發入門 >> Android應用實例(一)之---有道辭典VZ.0

Android應用實例(一)之---有道辭典VZ.0

編輯:開發入門

大家好,這是我做的一個簡單的有道android的DEMO,只是簡單的雛形。界面設計也有點丑陋呵呵~ 看看下面的效果圖:     第一步:思路解析 從界面看一共用了三個控件EditText,Button,WebVIEw。其實是四個,是當我們查詢內容為空的時候用來提示的Toast控件。 我們在EditText輸入查詢內容,這裡包括中文,英文。然後通過參數的形式,從http://dict.youdao.com/m取出數據把結果 存放在WebVIEw裡。 如下圖所示:   第二步:入手程序。 首先是布局界面main.XML <?XML version="1.0" encoding="utf-8"?>
<AbsoluteLayout 
  XMLns:android="http://schemas.android.com/apk/res/android"
  android:orIEntation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
  <!-- 建立一個EditText -->
 <EditText
  android:id="@+id/myEditText1" 
  android:layout_width="200px"
  android:layout_height="40px"
  android:textSize="18sp"
  android:layout_x="5px"
  android:layout_y="32px"
  />
  <!-- 建立一個Button -->
 <Button
  android:id="@+id/myButton01"
  android:layout_width="60px"
  android:layout_height="40px"
  android:text="查詢"
  android:layout_x="205px"
  android:layout_y="35px"
  />
<Button
    android:id="@+id/myButton02"
    android:layout_height="40px"
    android:layout_width="50px"
    android:text="清空"
    android:layout_y="35px"
    android:layout_x="270px"
  />
  <!-- 建立一個WebVIEw -->
  <WebVIEw 
  android:id="@+id/myWebVIEw1" 
  android:layout_height="330px" 
  android:layout_width="300px" 
  android:layout_x="7px"
  android:layout_y="90px"
  android:background="@drawable/black" 
  android:focusable="false"
  /> 
</AbsoluteLayout> 其次是主類YouDao.Java package androidApplication.Instance;
import android.app.Activity;
import android.os.Bundle;
import android.view.VIEw;
import android.webkit.WebVIEw;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast; public class YouDao extends Activity
{
  //查詢按鈕申明
  private Button myButton01;
  //清空按鈕申明
  private Button myButton02;
  //輸入框申明
  private EditText mEditText1;
  //加載數據的WebVIEw申明
  private WebView mWebVIEw1;
  
  public void onCreate(Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);
    setContentVIEw(R.layout.main);
    //獲得布局的幾個控件
    myButton01 = (Button)findVIEwById(R.id.myButton01);
    myButton02 = (Button) findVIEwById(R.id.myButton02);
    mEditText1 = (EditText) findVIEwById(R.id.myEditText1);
    mWebView1 = (WebView) findViewById(R.id.myWebVIEw1);     //查詢按鈕添加事件
    myButton01.setOnClickListener(new Button.OnClickListener()
    {
      public void onClick(VIEw arg0)
        {
          String strURI = (mEditText1.getText().toString());
          strURI = strURI.trim();
          //如果查詢內容為空提示
          if (strURI.length() == 0)
          {
            Toast.makeText(YouDao.this, "查詢內容不能為空!", Toast.LENGTH_LONG)
                .show();
          }
          //否則則以參數的形式從http://dict.youdao.com/m取得數據,加載到WebVIEw裡.
          else
          {
            String strURL = "http://dict.youdao.com/m/search?keyfrom=dict.mindex&q="
                + strURI;
            mWebVIEw1.loadUrl(strURL);
          }
        }
    });     //清空按鈕添加事件,將EditText置空
    myButton02.setOnClickListener(new Button.OnClickListener()
    {
      public void onClick(VIEw v)
      {
        mEditText1.setText("");
      }
    });
  }
} 程序大功告成。其實大家會發現,這個應用相當簡單,只是你們沒有想到而已,Narcissism一下呵呵~。如果大家程序跑不起來 ,可以Q我Email我,在留言裡留下你們的Q或者Email.
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved