のURLを読み込めません
しかし、同じコードで「 http://www.google.com 」を開くことができます。
そしてモバイルのブラウザはそれを開くことができます。
助けが必要。
ありがとうございました。
のURLを読み込めません
しかし、同じコードで「 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());
}
}
WebViewを開くために使用しているコードを投稿します。
ちなみに、追加しましたか
<uses-permission android:name="android.permission.INTERNET"/>
アプリケーションマニフェストに?
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);
私はそれを試しました、そしてそれは働いています.....