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同时运行。
答案 0 :(得分:2)
您的最后一行加载到myWebView
而不是myWebView1
。看起来你有一个错字