android - 我如何启用通过 Webview 下载 PDF

标签 android pdf webview download

我是 Android 的新手,但我创建了一个 webview,它显示了一个带有 PDF 下载链接的 wordpress 页面,但是当我点击它时没有任何反应,我希望你能帮助我 :)

list

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.freizeitpark.plus"
    android:versionCode="1"
    android:versionName="1.2" >

    <uses-sdk android:minSdkVersion="8" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER"/>
 <uses-permission android:name="android.permission.CALL_PHONE" />
    <application
        android:icon="@drawable/app_icon"
        android:label="@string/app_name" >
        <activity
            android:configChanges="keyboard|keyboardHidden|orientation"
            android:name="com.google.ads.AdActivity" >
        </activity>
        <activity
            android:label="@string/app_name"
            android:name=".SplashActivity" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
             android:configChanges="touchscreen|keyboardHidden|orientation"
            android:launchMode="singleTop"
            android:name="DroidWebViewActivity" >
        </activity>

    </application>

</manifest>

主要 Activity

package com.freizeitpark.plus;

import com.freizeitpark.plus.info.Info;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.Window;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.webkit.WebSettings.LayoutAlgorithm;
import android.webkit.WebSettings.PluginState;
import android.widget.ProgressBar;



public class DroidWebViewActivity extends Activity {
    /** Called when the activity is first created. */
    Context con;
    private WebView fweBview;
    private WebSettings webSettings;
    ProgressBar progressBar;

    String url = Info.WebUrl;
    String url22 = Info.WebUrl22;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.main);
        con = this;
        try {
            if (!SharedPreferencesHelper.isOnline(con)) {
                AlertMessage.showMessage(con, "", "No internet connection");
                return;
            }
            updateWebView(url);

        } catch (Exception e) {
            // TODO: handle exception
        }
    }

    private class HelloWebViewClient extends WebViewClient {

        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            view.loadUrl(url);
            return true;
        }

        @Override
        public void onPageFinished(WebView view, String url) {
            // TODO Auto-generated method stub
            super.onPageFinished(view, url);

            progressBar.setVisibility(View.GONE);
        }
    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if (keyCode == KeyEvent.KEYCODE_BACK && fweBview.canGoBack()) {
            fweBview.goBack();
            return true;
        }
        return super.onKeyDown(keyCode, event);

    }

    private void updateWebView(String url) {
        // TODO Auto-generated method stub
        progressBar = (ProgressBar) findViewById(R.id.progressBar12);
        fweBview = (WebView) findViewById(R.id.fbwebView);
        fweBview.getSettings().setJavaScriptEnabled(true);
        fweBview.getSettings().setDomStorageEnabled(true);
        fweBview.getSettings().setPluginState(PluginState.ON);
        webSettings = fweBview.getSettings();

        webSettings.setLayoutAlgorithm(LayoutAlgorithm.NARROW_COLUMNS);
        webSettings.setBuiltInZoomControls(true);

        fweBview.getSettings().setPluginsEnabled(true);
        fweBview.loadUrl(url);

        fweBview.setWebViewClient(new HelloWebViewClient());

    }

    // /---- Rating Button-----------------------------

    public void btnRating(View v) {

        try {

            alertbox(null, null);

        } catch (Exception e) {
            // TODO: handle exception
        }

    }

    protected void alertbox(String title, String mymessage) {
        AlertDialog.Builder builder = new AlertDialog.Builder(this);
        builder.setMessage("Dir gefällt die Freizeitparks Guide+ App? Dann würden wir uns über eine Bewertung sehr freuen :) ").setCancelable(
                false).setTitle("").setPositiveButton("Jetzt bewerten",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        // finish the current activity
                        // AlertBoxAdvance.this.finish();
                        /*
                         * Intent myIntent = new Intent(
                         * Settings.ACTION_SECURITY_SETTINGS);
                         * startActivity(myIntent);
                         */
                        Intent viewIntent = new Intent(
                                "android.intent.action.VIEW",
                                Uri
                                        .parse(Info.GooglePlayAppUrl));
                        startActivity(viewIntent);
                        dialog.cancel();
                    }
                }).setNegativeButton("Später",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        // cancel the dialog box

                        dialog.cancel();
                    }
                });
        AlertDialog alert = builder.create();
        alert.show();
    }

    // ------------ Share button---------------------

    public void btnShare(View v) {

        Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
        sharingIntent.setType("text/plain");
        sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
                "    ");
        sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Jetzt die Freizeitparks Guide+ App endlich im Play Store hier kannst du Sie dir kostenlos herunterladen https://play.google.com/store/apps/details?id=com.freizeitpark.plus");
        startActivity(Intent.createChooser(sharingIntent, "Weiterempfehlen"));
    }

    // ------------ Home button---------------------
    public void btnHome(View v) {
        try {
            updateWebView(url);
        } catch (Exception e) {
            // TODO: handle exception
        }

        // Intent i = new Intent(DroidWebViewActivity.this,
        // DroidWebViewActivity.class); // your class
        // startActivity(i);

    }

    // ------------ Email button---------------------
    public void btnEmail(View v) {

        Intent email = new Intent(Intent.ACTION_SEND);
        email.putExtra(Intent.EXTRA_EMAIL,
                new String[] { "" });
        email.putExtra(Intent.EXTRA_SUBJECT, Info.eMailSubject);
        email.putExtra(Intent.EXTRA_TEXT, Info.eMailDetails);
        email.setType("message/rfc822");
        startActivity(Intent.createChooser(email, "Per E-Mail :"));

    }

    // ------------ Call button---------------------
    public void btnPhone(View v) {
        try {
            updateWebView(url22);
        } catch (Exception e) {
            // TODO: handle exception
        }

        // Intent i = new Intent(DroidWebViewActivity.this,
        // DroidWebViewActivity.class); // your class
        // startActivity(i);

    }


    }

希望您能帮到我很多! :)

最佳答案

尝试将此添加到您的代码中:(可能在您的 updateWebView 方法中)这将拦截所有下载并将它们发送到标准的 android 下载管理器。

 mWebView.setDownloadListener(new DownloadListener() {
    public void onDownloadStart(String url, String userAgent,
            String contentDisposition, String mimetype,
            long contentLength) {
                Request request = new Request( Uri.parse(url));
                request.allowScanningByMediaScanner();
                request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
                request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "myPDFfile.pdf"); 
                DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
                dm.enqueue(request);        
   }
});

请注意,这将每次都使用相同的文件名,因此除非您修改代码以使用不同的文件名,否则您的文件可能会被替换。

关于android - 我如何启用通过 Webview 下载 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28517141/

相关文章:

android - Kivy 中用于 Android 开发的 SSL

android - 如图所示的水平 ScrollView

android - 更改默认的 android 操作栏图标

javascript - react native : Allow device rotation only when webview plays video

Python:WebKit.WebView:如何在错误时重新加载?

android - 如何在应用栏中添加 Assets 图像作为 Flutter 应用程序中的操作图标?

linux - wkhtmltopdf --use-xserver 选项

javascript - 使用 jquery ajax 下载 pdf 文件

javascript - Html 内容到 Pdf 转换

webview - 从<webview>截取对话框并读取内容