我无法加载的网址
但我可以使用相同的代码打开“ http://www.google.com ”。
手机浏览器可以打开。
需要帮忙。
谢谢你。
尝试添加
wv.getSettings().setJavaScriptEnabled(true);
在加载 URL 之前
xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#ff00ff">
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
班级:
wb=(WebView)findViewById(R.id.webView1);
wb.loadUrl("http://ursite/");
wb.setWebViewClient(new WebViewClient());
}
}
xml中的WebView:
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="75dp" />
在班上:
在字符串中调用您的网站链接并像这样调用
WebView wv=(WebView) findViewById(R.id.webview);
wv.loadUrl(your string);
我试过了,它的工作原理......
发布您用于打开 WebView 的代码。
顺便说一句,你有没有添加
<uses-permission android:name="android.permission.INTERNET"/>
到您的应用程序清单?