Android 7.0你需要注意的一些坑。
阿新 • • 發佈:2019-01-30
一.安裝apk報錯:android.os.FileUriExposedException
1.在AndroidMainifest.xml檔案中新增:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true" >
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
2.在res下新建一個名為xml的檔案家,再新建檔案provider_paths:
<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path
name="files_root"
path="Android/data/com.example.downloadapk/"/>
<external-path
name="external_storage_root"
path="."/>
</paths>
path:需要臨時授權訪問的路徑(.代表所有路徑) name:給訪問路徑命名
3.安裝apk檔案:
/**
* 安裝apk檔案
*
* @param apkFile 安裝包所在目錄
*/
private void installApk(File apkFile) {
Intent intent = new Intent(Intent.ACTION_VIEW);
try {
String[] command = {"chmod", "777", apkFile.toString()};
ProcessBuilder builder = new ProcessBuilder(command);
builder.start();
} catch (IOException ignored) {
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
Uri contentUri = FileProvider.getUriForFile(getApplicationContext(),
BuildConfig.APPLICATION_ID + ".fileProvider", apkFile);
intent.setDataAndType(contentUri, "application/vnd.android.package-archive");
} else {
intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
}
startActivity(intent);
}
二.調取系統相機崩潰解決android.os.FileUriExposedException
1、首先是在 AndroidManifest.xml 中申明
<provider
android:name=".ImagePickerProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
2、建立一個provider_paths.xml 檔案在 res資料夾下的 xml 資料夾下。
res/xml/provider_paths.xml
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>
3、在適當的地方去替換它
Uri uri;
if (VERSION.SDK_INT <= VERSION_CODES.M){
uri = Uri.fromFile(takeImageFile);
}else{
/**
* 7.0 呼叫系統相機拍照不再允許使用Uri方式,應該替換為FileProvider
* 並且這樣可以解決MIUI系統上拍照返回size為0的情況
*/
uri = FileProvider.getUriForFile(activity, ProviderUtil.getFileProviderName(activity), takeImageFile);
}
Log.e("nanchen",ProviderUtil.getFileProviderName(activity));
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT,uri);
import android.content.Context;
/**
* 用於解決provider衝突的util
*
* Date: 2017-03-23 12:21
*/
public class ProviderUtil {
public static String getFileProviderName(Context context){
return context.getPackageName()+".provider";
}
}