Android控件使用手册:使用WebView打开http://www.baidu.com

WebView的用法相当简单易用,但是也有几个点是必须记住的,要不然使用起来的时候也会无所适从。

1、首先是在xml文件中添加WebView控件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <WebView
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></WebView>

</RelativeLayout>







你可能感兴趣的:(webView,Android控件使用手册)