码迷,mamicode.com
首页 > Web开发 > 详细

WebView调用有道词典实如今线查词

时间:2017-04-16 19:11:04      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:abs   推断   rom   center   schema   roi   调用   pre   ==   

    WebView(网络视图)能载入显示网页,能够将其视为一个浏览器。它使用了WebKit渲染引擎载入显示网页,用法非常easy,直接在XML文件里写入webview控件就可以,主要代码例如以下:


<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >
  <EditText
    android:id="@+id/editText"
    android:layout_width="150px"
    android:layout_height="40px"
    android:layout_x="5px"
    android:layout_y="32px"
    android:textSize="18sp" />
  <Button
    android:id="@+id/btnsearch"
    android:layout_width="60px"
    android:layout_height="40px"
    android:layout_x="165px"
    android:layout_y="35px"
    android:text="查看" />
  <WebView
    android:id="@+id/reswebView"
    android:layout_width="300px"
    android:layout_height="330px"
    android:layout_x="7px"
    android:layout_y="90px"
    android:focusable="false" />
</AbsoluteLayout>

程序运行顺序为。先取到edittext控件的内容。推断内容是否为空,不为空则提交到WebView中。


代码例如以下:


btnSearch = (Button) findViewById(R.id.btnsearch);
btnSearch.setOnClickListener(new OnClickListener() {
   @Override
   public void onClick(View v) {
    String strUri = editText.getText().toString();
    strUri = strUri.trim();
    if (strUri.length() == 0) {
     Toast.makeText(getApplicationContext(), "请输入查询字符", 1).show();
    } else {
     String strURL = "http://dict.youdao.com/m/search?keyfrom=dict.mindex&q=" + strUri;
     reswebView.loadUrl(strURL);
    }
   }
});

主要就是调用webview的loadUrl方法,效果截图:


技术分享

WebView调用有道词典实如今线查词

标签:abs   推断   rom   center   schema   roi   调用   pre   ==   

原文地址:http://www.cnblogs.com/zsychanpin/p/6719449.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!