1

WebViewwww.google.comを表示する基本的なアプリケーションがあります。内蔵のブラウザからアクセスできますが、からはアクセスできませんWebView。私はさまざまなフォーラムで多くの質問を行い、すべての提案を取り入れましたが、何もうまくいかなかったようです。私は次のことを確認しました
。1。uses-permissionインターネットアクセスを許可するためのタグは、manifestタグの子です。
2.WebViewのJavaScriptを有効にしました。
マニフェストファイル:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sriram.hellowebview"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-permission android:name="android.permission.INTERNET"></uses-permission>

    <uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".helloWebview"
            android:label="@string/title_activity_hello_webview" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>  

レイアウト:

<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

   <WebView
       android:id="@+id/helloWebview"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
     />
</LinearLayout>  

コード:

/* Program to create sample webview.
 * Steps:
 * 1. Create webview.
 * 2. Show some website in it.
 * 3. Show some transitions as well.
 */

package com.sriram.hellowebview;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.webkit.WebView;

public class helloWebview extends Activity {

    WebView myWebview;
    String url = "www.google.com";

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_hello_webview);

        Log.v(this.toString(), "Starting activity.");

        myWebview = (WebView) findViewById(R.id.helloWebview);

        Log.v(this.toString(), "Getting settings.");
        myWebview.getSettings().setJavaScriptEnabled(true);

        Log.v(this.toString(), "Loading URL now.");
        myWebview.loadUrl(url);
        Log.v(this.toString(), "Loaded URL.");

        //open all links within the same webview.
        //myWebview.setWebViewClient(new WebViewClient());
        //Log.v(this.toString(), "All done here.");
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_hello_webview, menu);
        return true;
    }
}
4

4 に答える 4

6
String url = "https://www.google.co.in/";

またはそうでなければ

super.loadUrl("https://www.google.co.in//");
于 2013-03-26T07:59:45.270 に答える
4

リンクの前にhttp://を追加してみてください

于 2013-03-26T07:47:55.627 に答える
3
WebView wt;

wt.loadUrl("http://www.google.com/");

また、Android 4.0では空白になることがありandroid:hardwareAccelerated="true"、マニフェストファイルで使用します。

于 2013-03-26T08:06:34.977 に答える
0

URL文字列にhttp://を追加する必要があります...URLは次のようになっている必要があります

String url = " http://www.google.com/ ";

今やる

webview.loadurl(url);

于 2015-08-20T12:17:35.850 に答える