Android 的權(quán)限處理建議
下面分享一些問我在APP上開發(fā)時處理權(quán)限的一些代碼,希望能幫到大家:
Android判斷應(yīng)用是否擁有某種權(quán)限
public static boolean hasExternalStoragePermission(Context context){??
? ? int perm = context.checkCallingOrSelfPermission("android.permission.WRITE_EXTERNAL_STORAGE");??
? ? return perm == PackageManager.PERMISSION_GRANTED;??
}?
------------------我是分割線----------------------------------------------------
權(quán)限判斷 加 請求權(quán)限? 6.0之后都要使用? ? ? ? ? ? ? ? 動態(tài)請求權(quán)限
?RXJAVA2的寫法?
導(dǎo)包
? ? compile 'com.tbruyelle.rxpermissions2:rxpermissions:0.9.4@aar'
? ? implementation 'io.reactivex.rxjava2:rxjava:2.0.7'
? ? implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
? ? ? ? RxPermissions rxPermissions=new RxPermissions(this);
? ? ? ? rxPermissions.request(
? ? ? ? ? ? anifest.permission.READ_EXTERNAL_STORAGE,
? ? ? ? ? ? Manifest.permission.CALL_PHONE,Manifest.permission.INTERNET)
? ? ? ? .subscribe(new Consumer<Boolean>() {
? ? ? ? ? ? @Override
? ? ? ? ? ? public void accept(Boolean aBoolean) throws Exception {
? ? ? ? ? ? ? ? if (aBoolean){
? ? ? ? ? ? ? ? ? ? //申請的權(quán)限全部允許
? ? ? ? ? ? ? ? ? ? Toast.makeText(B_Activity.this, "允許了權(quán)限!", Toast.LENGTH_SHORT).show();
? ? ? ? ? ? ? ? }else{
? ? ? ? ? ? ? ? ? ? //只要有一個權(quán)限被拒絕,就會執(zhí)行
? ? ? ? ? ? ? ? ? ? Toast.makeText(B_Activity.this, "未授權(quán)權(quán)限,部分功能不能使用", Toast.LENGTH_SHORT).show();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? });
------------------我是分割線----------------------------------------------------
申請權(quán)限普通寫法,不用導(dǎo)其他網(wǎng)絡(luò)包
? ? ? ? ? ? ? ? ? ? Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
? ? ? ? ? ? ? ? ? ? intent.setType("application/msword");? ?//打開文件類型? ?Word文檔
? ? ? ? ? ? ? ? ? ? intent.addCategory(Intent.CATEGORY_OPENABLE);
? ? ? ? ? ? ? ? ? ? startActivityForResult(intent, 1);
------------------我是分割線----------------------------------------------------
7.0打開文件的兼容處理?? 例子如下 打開PPT文件? 表格 視頻貌似沒這個問題撒……
首先在清單文件最底下加這玩意
? ? ? ? <!--7.0打開文件專用兼容權(quán)限? 給一個私有文件權(quán)限-->
? ? ? ? <provider
? ? ? ? ? ? android:name="android.support.v4.content.FileProvider"
? ? ? ? ? ? android:authorities="com.jph.takephoto.fileprovider"
? ? ? ? ? ? android:grantUriPermissions="true"
? ? ? ? ? ? android:exported="false">
? ? ? ? ? ? <meta-data
? ? ? ? ? ? ? ? android:name="android.pport.FILE_PROVIDER_PATHS"
? ? ? ? ? ? ? ? android:resource="@xml/file_paths" />
? ? ? ? </provider>
? ? ? ? 然后在創(chuàng)建一個xml文件夾?
? ? ? ? 創(chuàng)建一個file_paths.xml?
? ? ? ? 里面寫上
? ? ? ? <?xml version="1.0" encoding="utf-8"?>
<resources>
? ? <paths>
? ? ? ? ?<external-path path="" name="camera_photos" />
? ? ? </paths>
</resources>
切記一五一十照著寫吧 引用的 file_paths這個可以自定義 對的上就可以啊
用法 在這里 主要!
? ? /**
? ? ?* 打開文件
? ? ?*
? ? ?* @param file 兼容方面好像有問題
? ? ?*? ? ? ? ? ? ?解決
? ? ?*/
? ? public static void openFile(File file, Context context) {
? ? ? ? Intent intent = new Intent();
? ? ? ? /**核心是這兩句 下面的路徑 替換成這個*/
? ? ? ? Uri imageUri = FileProvider.getUriForFile(context, "com.jph.takephoto.fileprovider", file);//通過FileProvider創(chuàng)建一個content類型的Uri
//? ? ? ? intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
? ? ? ? intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);//添加這一句表示對目標(biāo)應(yīng)用臨時授權(quán)該Uri所代表的文件
? ? ? ? //設(shè)置intent的Action屬性
? ? ? ? intent.setAction(Intent.ACTION_VIEW);
? ? ? ? //獲取文件file的MIME類型
? ? ? ? String type = getMIMEType(file);
? ? ? ? //設(shè)置intent的data和Type屬性。? 這個適配有問題
//? ? ? ? intent.setDataAndType(/*uri*/Uri.fromFile(file), type); // 吧里面的url換掉
? ? ? ? intent.setDataAndType(imageUri, type);? //7.0后要用這樣的寫法了
? ? ? ? //跳轉(zhuǎn)
? ? ? ? LogUtil.e("msg", "to test0---------------------");
? ? ? ? context.startActivity(intent);
? ? ? ? Preference.getInstance().putBoolean("start_train", true);
? ? ? ? LogUtil.e("msg", "to test1---------------------");
? ? }
------------------我是分割線----------------------------------------------------
? <!-- 新增加自動更新安裝權(quán)限 8.0后 自動更新需要這個 -->
? ? <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
------------------我是分割線----------------------------------------------------
現(xiàn)在很多操作都和權(quán)限掛鉤,基本所有操作前都要判斷取一下,否則無法繼續(xù),操作的時候
要留意了