- 浏览: 22127 次
最新评论
1、布局文件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 android:id="@+id/editTextid" android:layout_width="200px" android:layout_height="wrap_content" android:layout_x="5px" android:layout_y="32px" /> <Button android:id="@+id/query" android:layout_width="50px" android:layout_height="40px" android:text="查询" android:layout_x="205px" android:layout_y="35px" /> <Button android:id="@+id/clear" android:layout_width="50px" android:layout_height="40px" android:text="清空" android:layout_x="270px" android:layout_y="35px" /> <WebView android:id="@+id/webViewId" android:layout_width="300px" android:layout_height="320px" android:layout_x="10px" android:layout_y="80px" android:focusable="false" /> </AbsoluteLayout>
主程序
import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.webkit.WebView; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class YoudaoActivity extends Activity { /** Called when the activity is first created. */ private EditText editString; private Button query; private Button clear; private WebView webview; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); query = (Button)findViewById(R.id.query); clear = (Button)findViewById(R.id.clear); query.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub editString = (EditText)findViewById(R.id.editTextid); String strURL = editString.getText().toString(); strURL = strURL.trim(); webview = (WebView)findViewById(R.id.webViewId); if (strURL.length() == 0) { Toast.makeText(YoudaoActivity.this, "查询内容不能为空!", Toast.LENGTH_LONG).show(); } else { String url = "http://dict.youdao.com/m/search?keyfrom=dict.mindex&q="+strURL; webview.loadUrl(url); } } }); clear.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub editString.setText(""); } }); } }
发表评论
-
SQLite数据库
2011-10-21 11:12 10371。从www.sqlite.org下载SQLite 3.3.4 ... -
mars老师的googleMap示例(二)
2011-10-15 17:14 913manifest.xml文件 <?xml version ... -
mars老师的googleMap(一)
2011-10-15 10:43 850一、申请 Apikey Apikey Apikey Apike ... -
Intent在android中的几种用法
2011-10-14 09:26 797如果是从BroadcastReceiver 启动一个新的Act ... -
基于Service与ContentProvider的音乐播放实例
2011-10-13 23:37 768Android的核心也就是Activi ... -
android之用户定位(一)
2011-10-13 19:53 17171、User Location 能做什么 1) 获取用户的位置 ... -
android之蓝牙操作(二)
2011-10-13 18:43 13281、修改本蓝牙设备的可见性 2、扫描周围可用蓝牙设备 步骤: ... -
android之蓝牙操作(一)
2011-10-13 16:35 1255与蓝牙相关的API 1、BluetoothAdapter ... -
Android学习之JSON数据解析
2011-10-12 13:30 710在Android应用开发中,常用的数据交换格式有XML和JSO ... -
android中的JSON解析
2011-10-12 10:17 9411 。 什么是JSON 就是现在网络上比较流行 ... -
Animations的使用(六)
2011-10-11 17:44 1306LayoutAnimationController的使用方法( ... -
Animations的使用(五)
2011-10-11 17:41 7381 AnimationSet的使用方法 什么是Animat ... -
Animations使用 (四)
2011-10-11 17:36 580Animations的第二种使用方法(第一种见1) 步骤: ... -
android面试
2011-10-10 21:12 794为什么要用ContentProvider?它和sql的实现上有 ... -
android中的animations的用法(三)
2011-10-10 21:07 752一 LayoutAnimationController ... -
android中的animations的用法(二)
2011-10-10 20:59 801一 AnimationSet 的用法 二 Interpol ... -
android中的animations的用法 (一)
2011-10-10 20:56 1354Animations 可分为两大类: 一 Tweened A ...
相关推荐
Android期末大作业模仿有道词典项目源代码。。Android期末大作业模仿有道词典项目源代码。。Android期末大作业模仿有道词典项目源代码。。Android期末大作业模仿有道词典项目源代码。。Android期末大作业模仿有道...
高仿有道词典 给你界面布局 或者代码编写规范的榜样
Chrome插件-有道词典划词扩展插件,适用于有英文翻译需求的人员,可以方便快捷的即时翻译,协助英文阅读。
Android应用源码仿有道词典半成品项目
关于安卓有道词典开发的小项目,参考的是一前辈的例子,希望对大家学习有所帮助,界面比较简洁,大家也可以拿去二次开发。
主要为大家分享了Android网易有道词典案例源码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
网易有道词典APP分析:从用户需求看发展前景.docx
网易有道词典产品分析
最近没事仿冒了有道词典界面进行了开发,主要涉及界面,查词,记录等功能
有道字典爬取小程序,通过tkinter坐GUI设计
有道词典网站仿写(学习资料).zip有道词典网站仿写(学习资料).zip有道词典网站仿写(学习资料).zip有道词典网站仿写(学习资料).zip有道词典网站仿写(学习资料).zip有道词典网站仿写(学习资料).zip有道词典...
可用android studio软件开发工具直接打开。
使用aptitude在ubuntu16.04下安装有道词典.docx
这是一个像有道词典似的一样的安卓小例子,希望大家能多多指点一下
给有道词典添加离线词库.pdf
最新2016有道词典词汇批量导入方法.docx
安卓期末作业Android期末大作业模仿有道词典项目源代码
有详细的代码,可直接运行。还有实习计划书和实习安排
本篇文章小编为大家介绍,Android 有道词典的简单实现方法介绍。需要的朋友参考下
有道词典和金山词霸APP竞品分析分享.pdf