Android应用实例之有道辞典

1.

共用控件EditText,Button,WebView以及查询内容为空的时候用来提示的Toast控件。我们在EditText输入查询内容,这里包括中文,英文。然后通过参数的形式,从http://dict.youdao.com/m取出数据把结果存放在WebView里。

2.写程序

首先是布局界面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);

          }

        }

    });

   //http://dict.youdao.com/m/search?keyfrom=dict.mindex&q=happy

    //清空按钮添加事件,将EditText置空

    myButton02.setOnClickListener(new Button.OnClickListener()

    {

      public void onClick(View v)

      {

        mEditText1.setText("");

      }

    });

  }

}

 

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值