2016-01-31 106 views
1

我面對這個錯誤:試圖打開pdf文件的Android

E/AndroidRuntime: java.lang.IllegalArgumentException: Failed to find configured root that contains /data/data/com.mobgen.androidinterviewtest/files/LaFerrari.pdf 
E/AndroidRuntime:  at android.support.v4.content.FileProvider$SimplePathStrategy.getUriForFile(FileProvider.java:678) 
E/AndroidRuntime:  at android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:377) 
E/AndroidRuntime:  at com.mobgen.interview.SingleCarActivity$1.onClick(SingleCarActivity.java:92) 

這是因爲該行的代碼:

Uri uri = FileProvider.getUriForFile(SingleCarActivity.this, "be.myapplication", file); 

我跟了,我已經找到了資源: http://developer.android.com/reference/android/support/v4/content/FileProvider.html

Open file in cache directory with ACTION_VIEW

How to use support FileProvider for sharing content to other apps?

但是我仍然無法解決我遇到的錯誤。

下面你可以看到我的代碼:

SingleCarActivity.java:

File file = new File(getFilesDir(), pdf); //pdf contains "LaFerrari.pdf" 
Uri uri = FileProvider.getUriForFile(SingleCarActivity.this, "be.myapplication", file); 
Intent intent = new Intent(); 
intent.setAction(Intent.ACTION_VIEW); 
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); 
intent.setDataAndType(uri, "application/pdf"); 
startActivity(intent); 

的AndroidManifest.xml:

<provider 
    android:name="android.support.v4.content.FileProvider" 
    android:authorities="be.myapplication" 
    android:exported="false" 
    android:grantUriPermissions="true"> 
    <meta-data 
     android:name="android.support.FILE_PROVIDER_PATHS" 
     android:resource="@xml/file_paths" /> 
</provider> 

file_paths.xml:

<paths xmlns:android="http://schemas.android.com/apk/res/android"> 
    <files-path name="my_pdf" path="assets/"/> 
</paths> 

下面你可以看到我的項目結構如何的屏幕截圖: 鏈接:http://i.imgur.com/4dbhcKF.png

+0

'assets /'是開發機器上的一個目錄。它不是設備上的目錄。 'FileProvider'不能提供資產,只能提供本地文件。你是否將這些文件從資產複製到'getFilesDir()'下的'assets /'子目錄? – CommonsWare

+0

@CommonsWare我用Google搜索了它。你的意思是類似於以下問題的答案嗎?鏈接:http://stackoverflow.com/questions/8474821/how-to-get-the-android-path-string-to-a-file-on-assets-folder – superkytoz

回答

1

FileProvider無法直接爲資產提供服務,因爲資產不是文件。你的主要選擇是:

  1. 複製資產到一個文件中,你已經配置FileProvider的位置。我在this sample app中演示了FileProvider的配置,但the question from your comment的答案是將資產複製到文件的基礎知識。

  2. 使用my StreamProvider,它可以直接服務資產,而無需複製。

+0

我已經使用您的示例應用程序的代碼。但是現在我正面臨着這個新錯誤:'沒有發現處理意圖的活動{act = android.intent.action.VIEW dat = content://be.myapplication/my_pdf/LaFerrari.pdf flg = 0x1}'這是因爲這行代碼:'startActivity(i);'我GOOGLE了,我發現這個問題:http://stackoverflow.com/questions/9157490/android-no-activity-found-to-handle-intent-error-how -it-will-resolve 因此,我添加了一個意向過濾器到SingleCarActivity:http://pastebin.com/9jd2FACK 但我仍然得到錯誤。我已將代碼放在pastebin鏈接上:http://pastebin.com/NUNGxvcQ – superkytoz

+0

@superkytoz:「但是現在我正面臨着這個新錯誤」 - 您需要在您的設備上安裝一個PDF查看應用程序,支持'content://''Uri'值。 Adobe Reader,Foxit和ezPDF Reader都可以,其他人也可以。 – CommonsWare

+0

啊是的,它的作品:)。 – superkytoz