标签:android
WebView(网络视图)能加载显示网页,可以将其视为一个浏览器。它使用了WebKit渲染引擎加载显示网页,使用方法很简单,直接在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>
代码如下:
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); } } });
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:android
原文地址:http://blog.csdn.net/cnshsh/article/details/46741663