2016-11-08 71 views
2

嗨stackoverflow即時通訊下載apk安卓Nougat真的很難。我知道文件提供者需要使用,我只是不知道如何輸入正確的路徑。該應用程序崩潰或找不到該文件。它總是打開/storage/emulated/0/Android/data/cf.vojtechh.apkmirror/Downloads - 哪個當然不存在。我需要的應用程序來存取權限的內部存儲(類似Environment.getExternalStorageDirectory()的getPath()+ 「/」 + Environment.DIRECTORY_DOWNLOADS + 「/」 +文件名打開下載的文件在Android的牛軋糖與文件提供

任何想法的下載目錄?我一直在整個互聯網上尋找這一個多小時,但我無法找到它(我到了那一點,我很生氣,我想離開那裏的崩潰,忽略它)

MainActivity.java

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { 
         File apkfile = new File(getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS), fileName); 
         Uri apkUri = FileProvider.getUriForFile(MainActivity.this, "cf.vojtechh.apkmirror.provider", apkfile); 
         String s = apkUri.toString(); 
         Log.d("HERE!!",s); 
         Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE); 
         intent.setData(apkUri); 
         intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); 
         startActivity(intent); 

} else { 
         File apkfile = new File(Environment.getExternalStorageDirectory().getPath() + "/" + Environment.DIRECTORY_DOWNLOADS + "/" + fileName); 
         Uri apkUri = Uri.fromFile(apkfile); 
         Intent intent = new Intent(Intent.ACTION_VIEW); 
         intent.setDataAndType(apkUri, "application/vnd.android.package-archive"); 
         intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
         startActivity(intent); 
} 

provider_paths.xml

<?xml version="1.0" encoding="utf-8"?> 
    <paths> 
     <external-path name="Download" path="Download/"/> 
    </paths> 

AndroidManifest.xml中

<provider 
     android:name="android.support.v4.content.FileProvider" 
     android:authorities="cf.vojtechh.apkmirror.provider" 
     android:exported="false" 
     android:grantUriPermissions="true"> 
     <meta-data 
      android:name="android.support.FILE_PROVIDER_PATHS" 
      android:resource="@xml/provider_paths"/> 
    </provider> 

回答

2

嘗試使用Environment#getExternalStoragePublicDirectory()方法代替。 Context#getExternalFilesDir()旨在用於私人應用程序的文件,因此包含應用程序包名稱的路徑(技術上,此目錄公開,但仍不是您要查找的內容)。

File downloads = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS); 

然後你就可以創建下載的文件的File表示:

File apk = new File(downloads, filename);