私は使用しています:windows7、日食、最新のavdからアンドロイド2.3.3 &マイルストーン< - NVPACK - 実際には 問題はどこでも議論されていますが、解決策私のために働かなかった。私のwebview with android
私はURLをロードしようとすると、それは
一部がHTMLSについて言っていたが、いや、鉱山がhttp://www.google.comかhttp://www.baidu.comまたはファイルで空白のページが判明:///android_asset/demo.htmlなど
とほとんど行わソリューション
許可:
<uses-permission android:name="android.permission.INTERNET" />
javscriptスイッチャー
mWebView.getSettings().setJavaScriptEnabled(true);
、その後、私のすべてのコード: javaの
package xiamubobby.inoroy.androidtest;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebSettings;
import android.webkit.WebView;
public class WebViewDemo extends Activity {
private WebView mWebView;
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
mWebView = (WebView) findViewById(R.id.webView);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadUrl("http://www.google.com");
}
}
マニフェスト:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xiamubobby.inoroy.androidtest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".AndroidtestActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
main.xml
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
誰がどのような私を教えてもらえます間違った?私は救助を望んでいる。 私は非常に経験豊富なプログラマーではないので、多分愚かな間違いがあるかもしれません。お待ちいただいてありがとうございます。
と
android:name=".AndroidtestActivity"
を置き換えるには、どうもありがとうございました、働いていた、と私はまだ私の中にこのような詳細を見つけることができませんよ本。とにかく、本当にばかげた質問、あなたの助けにはどうもありがとう。 – user977289