标签: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>
代码例如以下:
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); } } });
标签:abs 推断 rom center schema roi 调用 pre ==
原文地址:http://www.cnblogs.com/zsychanpin/p/6719449.html