0

setWebViewClient と setWebChromeClient を使用してページを読み込もうとしています。google.com、twitter.com、JS+CSS+HTML で作成した別の Web ページなどを正常に読み込むことができます。しかし、この Web ページを正しく読み込むことはできません: http://mozilla.github.com/pdf.js/web/viewer.html

何が起こっているのか、それを修正する方法について何か考えがある人はいますか?

ここにコード:

    public class MyActivity extends Activity {

      private WebView mWebView;

      @Override
      protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_shelf);

        mWebView = (WebView) findViewById(R.id.webView);

        mWebView.setWebChromeClient(new WebChromeClient(){
            public boolean onConsoleMessage(ConsoleMessage cm) {
                Log.d(Utils.tConsole, cm.message() 
                        + " -- From line " + cm.lineNumber() 
                        + " of " + cm.sourceId() 
                        );
                return true;
            }
        }); 
        mWebView.setWebViewClient(new WebViewClient(){
            @Override
            public boolean shouldOverrideUrlLoading(WebView view, String url){
                view.loadUrl(url);
                return true;
            }
        }); 

        mWebView.getSettings().setLoadsImagesAutomatically(true); 
        mWebView.getSettings().setDatabaseEnabled(true);
        mWebView.getSettings().setAppCacheEnabled(true); 
        mWebView.getSettings().setDomStorageEnabled(true); 
        mWebView.getSettings().setJavaScriptEnabled(true);

        mWebView.loadUrl("http://mozilla.github.com/pdf.js/web/viewer.html");
    }

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

対応するレイアウトのコード:

<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="@android:color/black"
>
  <WebView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
  />
</LinearLayout>  

そしてマニフェスト:

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

    <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />

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


    <application
        android:allowBackup="true"
        android:hardwareAccelerated="true"
        android:screenOrientation= "landscape"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.hey.MyActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

どんな助けでも大歓迎です!ありがとうございました。

4

1 に答える 1

0

最初の問題は shouldOverrideUrlLoading() にあり、それを削除するか、次のものに置き換えます。

 public boolean shouldOverrideUrlLoading(WebView view, String url) {
    if (Uri.parse(url).getHost().equals("www.myHost.com")) {
    // This is my web site, do not override; let WebView load the page
        return false;
    }
    // Otherwise, the link is not for a page on my site
    // Launch another Activity that handles URLs
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
    startActivity(intent);
    return true;
  }

別の問題があります: webview は大きなファイルを読み込めないようです。小さな Web ページは表示できますが、大きなページは最後まで読み込まれません。

WebView やアドバイスを「調整」する方法はありますか?

于 2013-03-08T20:51:32.720 に答える