通过下面的代码获取AppOpsManager MODE
private static int checkOp(Context context, int op){
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT){
Object object = context.getSystemService(Context.APP_OPS_SERVICE);
Class c = object.getClass();
try {
Class[] cArg = new Class[3];
cArg[0] = int.class;
cArg[1] = int.class;
cArg[2] = String.class;
Method lMethod = c.getDeclaredMethod("checkOp", cArg);
return (Integer) lMethod.invoke(object, op, Binder.getCallingUid(), context.getPackageName());
} catch(NoSuchMethodException e) {
e.printStackTrace();
LogUtils.e("permission:: NoSuchMethodException"+e.getMessage());
} catch (IllegalAccessException e) {
e.printStackTrace();
LogUtils.e("permission:: IllegalAccessException"+e.getMessage());
} catch (IllegalArgumentException e) {
e.printStackTrace();
LogUtils.e("permission:: IllegalArgumentException"+e.getMessage());
} catch (InvocationTargetException e) {
e.printStackTrace();
LogUtils.e("permission:: InvocationTargetException"+e.getMessage());
}
}
return -1;
}
每次通过设置界面修改 app 拨打电话权限,查看打印的值
小米 ,锤子手机正常
魅族MX5、OPPO R9S 不管怎么切换权限返回值都为0
你找了個特別的例子,電話現在不建議直接進行撥打,有些手機禁用第三方應用直接撥打電話,而是調用系統撥號盤。而6.0以下的權限控制還是按照你上面羅列的做法做,根據對象和值進行判斷,無法通過23以上的是否獲取授權進行操作。