有道词典

来源:互联网 发布:mac os sierra beta6 编辑:程序博客网 时间:2024/06/10 11:42

1、四个控件:EditText,Button,WebView,Toast控件

2、在EditText输入查询内容,这里包括中文,英文。然后通过参数的形式,从http://dict.youdao.com/m取出数据把结果存放在WebView里

运行结果:


主要代码:

UI界面程序:

<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:background="@drawable/mainbg"

    android:paddingBottom="@dimen/activity_vertical_margin"

    android:paddingLeft="@dimen/activity_horizontal_margin"

    android:paddingRight="@dimen/activity_horizontal_margin"

    android:paddingTop="@dimen/activity_vertical_margin"

    tools:context=".MainActivity">

 

    <EditText

        android:id="@+id/etWord"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignParentLeft="true"

        android:layout_alignParentTop="true"

        android:layout_marginTop="27dp"

        android:background="@android:drawable/edit_text"

        android:ems="10"

        android:singleLine="true"

        android:textColor="#552006"

        android:textColorHint="#782f10">

 

        <requestFocus/>

    </EditText>

 

    <Button

        android:id="@+id/btnSearch"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignRight="@+id/tvSearchResult"

        android:layout_alignTop="@+id/etWord"

        android:background="@drawable/ibsearchword"

        android:onClick="search"/>

 

    <WebView

        android:id="@+id/wvSearchResult"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:layout_alignLeft="@+id/etWord"

        android:layout_below="@+id/etWord"

        android:layout_marginTop="22dp"

        android:background="@drawable/bg_roundcorner"

        android:textAppearance="?android:attr/textAppearanceMedium"

        android:textSize="25sp"/>

 

</RelativeLayout>

主类代码

packageAndroidApplication.Instance;

importandroid.app.Activity;

importandroid.os.Bundle;

importandroid.view.View;

importandroid.webkit.WebView;

importandroid.widget.Button;

importandroid.widget.EditText;

importandroid.widget.Toast;

 

publicclass 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("");

     }

   });

 }

}

什么是有道翻译API?

有道翻译API,为广大开发者提供开放接口。您的应用或网站可通过有道翻译API,构建丰富多样的功能或应用,为用户带来即时,准确,方便的查词或翻译体验,从而降低语言理解与应用门槛。

依靠有道翻译网络数据挖掘和统计机器翻译技术实力做基础,加上您的智慧,将创造出更优良的体验和创新的功能。



0 0
原创粉丝点击