gpt4 book ai didi

android - 如何在android中的同一个 Activity 中打开三个html页面

转载 作者:行者123 更新时间:2023-11-28 02:57:38 24 4
gpt4 key购买 nike

我想这样做:通过在同一 Activity 中跟随按钮来导航三个网页

   mWebView = (WebView) findViewById(R.id.webView1);
Button b1 = (Button) findViewById(R.id.button1);
Button b2 = (Button) findViewById(R.id.button2);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadUrl("file:///android_asset/j.html");

最佳答案

试一试:

ma​​in_activity.xml

<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/webView2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />

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

MainActivity.java webView 的代码。

WebView myWebView = (WebView) findViewById(R.id.webView2);
myWebView.setWebViewClient(new WebViewClient());
myWebView.loadUrl("http://www.facebook.com");

WebView myWebView1 = (WebView) findViewById(R.id.webView);
myWebView1.setWebViewClient(new WebViewClient());
myWebView1.loadUrl("http://www.google.com");

关于android - 如何在android中的同一个 Activity 中打开三个html页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36281751/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com