web-dev-qa-db-ja.com

FileProvider URIを使用してPDFファイルを開くと、空白の画面が開きます

アプリにPDF=ファイルを作成し、それを外部ストレージの「ダウンロード」ディレクトリに書き込みます。インテントアクションを使用してアプリから開くと、FileProvider uriを使用してVIEWが実行されます。 、Google PDFビューアに空白の画面が表示され、Adobe Acrobatでファイルを開くこともできません。ファイルを書き込んで表示するためのコードを次に示します。ローカル通知を送信していることに注意してください。通知を通じてファイルを開こうとしています。

try {

                    File mypath=new File( Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),mParam1.getEmlak_id()+".pdf");
                    document.writeTo(new FileOutputStream(mypath));

                    document.close();

                    NotificationManager notificationManager = (NotificationManager)getContext().getSystemService(Context.NOTIFICATION_SERVICE);

                    File file = new File( Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),mParam1.getEmlak_id()+".pdf");
                    Uri pdfUri = FileProvider.getUriForFile(getContext(), getContext().getApplicationContext().getPackageName() + ".com.onur.emlakdosyasi.provider", file);
                    Intent intent = new Intent(Intent.ACTION_VIEW);
                    intent.setDataAndType(pdfUri, "application/pdf");
                    intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
                    intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

                    //use the flag FLAG_UPDATE_CURRENT to override any notification already there
                    PendingIntent contentIntent = PendingIntent.getActivity(getContext(), 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

                    Notification notification = new Notification.Builder(getContext())
                            .setContentTitle("title")
                            .setContentText("content")
                            .setSmallIcon(R.drawable.pdficon)
                            .setContentIntent(contentIntent)
                            .setDefaults(Notification.DEFAULT_ALL)
                            .setPriority(Notification.PRIORITY_HIGH)
                            .build();


                    notificationManager.notify(10, notification);

                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }

これがAndroidManifest.xmlの私のプロバイダーです

<provider
        Android:name=".GenericFileProvider"
        Android:authorities="${applicationId}.com.onur.emlakdosyasi.provider"
        Android:exported="false"
        Android:grantUriPermissions="true">
        <meta-data
            Android:name="Android.support.FILE_PROVIDER_PATHS"
            Android:resource="@xml/provider_paths"/>
    </provider>

そして、これがプロバイダーのパスです:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:Android="http://schemas.Android.com/apk/res/Android">
<external-path name="external_files" path="."/>
<external-path name="Download" path="Download/"/>

保存したファイルは、ダウンロードフォルダーから手動で開くことができます。 FileProviderが提供するURIを使用して開くことはできません。

「exported」フィールドをtrueに変更しても、何も変更されません。

10

何時間もすべて試し、最後の手段としてここに投稿しました。 15分後、解決しました。

疑問に思う方のために、プロバイダーの名前属性を

Android:name=".GenericFileProvider"

Android:name="Android.support.v4.content.FileProvider"

なぜ自分でファイルプロバイダークラスを作成したのかさえわかりませんが、そのチュートリアルに従っていたことを覚えています。

4

私は同じ問題を抱えていましたが、私の場合は次の行でした:

intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

それが欠けていました。

7
Anders
  File pdfFile = new File(Environment.getExternalStorageDirectory() + "/Ap/" + "manual.pdf");  // -> filename = manual.pdf

    Uri excelPath;

            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {

        excelPath = FileProvider.getUriForFile(mContext, "YourPackageName", pdfFile);
    } else {
        excelPath = Uri.fromFile(pdfFile);
    }
    Intent pdfIntent = new Intent(Intent.ACTION_VIEW);
            pdfIntent.setDataAndType(excelPath, "application/pdf");
            pdfIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            pdfIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            pdfIntent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
            try{
        startActivity(pdfIntent);
    }catch(ActivityNotFoundException e){
        Toast.makeText(mContext, "No Application available to view PDF", Toast.LENGTH_SHORT).show();
    }
3
Ap11