Androi开发中道词典的实现方法

来源:爱站网时间:2019-02-01编辑:网友分享
​​​​​​​Android剪贴板复制内容可以粘贴到任何地方,对于一些字典、翻译工具和其他应用程序具有很高的使用价值,那么Androi开发中道词典的实现方法大家都清楚吗?下面就让爱站技术频道小编带你一起来了解一下吧!

Android剪贴板复制内容可以粘贴到任何地方,对于一些字典、翻译工具和其他应用程序具有很高的使用价值,那么Androi开发中道词典的实现方法大家都清楚吗?下面就让爱站技术频道小编带你一起来了解一下吧!

首先看程序界面如下!

1、布局文件:

复制代码 代码如下:

  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

      android:id="@+id/editText"
    android:layout_width="150px"
    android:layout_height="40px"
    android:layout_x="5px"
    android:layout_y="32px"
    android:textSize="18sp" />

  

  

      android:id="@+id/reswebView"
    android:layout_width="300px"
    android:layout_height="330px"
    android:layout_x="7px"
    android:layout_y="90px"
    android:focusable="false" />


2、修改MainActivity:

复制代码 代码如下:


public class MainActivity extends Activity {
private Button btnSearch;
private Button btnClear;
private EditText editText;
private WebView reswebView;

private void SetView() {
btnSearch = (Button) findViewById(R.id.btnsearch);
btnClear = (Button) findViewById(R.id.btnclear);
editText = (EditText) findViewById(R.id.editText);
reswebView = (WebView) findViewById(R.id.reswebView);
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);
}
}
});
btnClear.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
editText.setText("");
}
});
}

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
SetView();
}
}


3、在清单文件中添加网络访问权限:

运行程序即可!

上文是关于Androi开发中道词典的实现方法,相信大家都有了一定的了解,想要了解更多的技术信息,请继续关注爱站技术频道吧!

上一篇:简要概述Android文本框搜索和清空的代码实现

下一篇:详解android计算器的实现方法

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载