Androi开发中道词典的实现方法
Android剪贴板复制内容可以粘贴到任何地方,对于一些字典、翻译工具和其他应用程序具有很高的使用价值,那么Androi开发中道词典的实现方法大家都清楚吗?下面就让爱站技术频道小编带你一起来了解一下吧!
首先看程序界面如下!
1、布局文件:
android:layout_height="match_parent"
android:orientation="vertical" >
android:layout_width="150px"
android:layout_height="40px"
android:layout_x="5px"
android:layout_y="32px"
android:textSize="18sp" />
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开发中道词典的实现方法,相信大家都有了一定的了解,想要了解更多的技术信息,请继续关注爱站技术频道吧!