读书人

【Android】Web开发之使用WebView控件

发布时间: 2013-10-24 18:27:21 作者: rapoo

【Android】Web开发之使用WebView控件展示Web页面

Android提供了WebView控件展示web页面的能力,还可通过WebViewClient类辅助WebView处理各种通知、请求。

核心代码:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <WebView        android:id="@+id/webView1"        android:layout_width="match_parent"        android:layout_height="match_parent" /></LinearLayout>


读书人网 >Web前端

热点推荐