如何在单个布局/页面上运行多个webView

时间:2015-10-18 22:45:03

标签: android webview

std::shared_ptr

这是webView的MainActivity.java代码。

This is the main_activity.xml File
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        >
        <WebView
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/webView2"
             />
        <WebView
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/webView"
           />
    </LinearLayout>

每当我运行应用程序时,只有webView2正在运行。如何让webView同时运行。

1 个答案:

答案 0 :(得分:2)

您的最后一行加载到myWebView而不是myWebView1。看起来你有一个错字