本文整理汇总了Java中group.pals.android.lib.ui.filechooser.utils.Utils.hasPermissions方法的典型用法代码示例。如果您正苦于以下问题:Java Utils.hasPermissions方法的具体用法?Java Utils.hasPermissions怎么用?Java Utils.hasPermissions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类group.pals.android.lib.ui.filechooser.utils.Utils
的用法示例。
在下文中一共展示了Utils.hasPermissions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: checkConditionsThenConfirmUserToCreateNewDir
import group.pals.android.lib.ui.filechooser.utils.Utils; //导入方法依赖的package包/类
/**
* Checks current conditions to see if we can create new directory. Then
* confirms user to do so.
*/
private void checkConditionsThenConfirmUserToCreateNewDir() {
if (LocalFileContract.getAuthority(getActivity()).equals(
mFileProviderAuthority)
&& !Utils.hasPermissions(getActivity(),
Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
Dlg.toast(
getActivity(),
R.string.afc_msg_app_doesnot_have_permission_to_create_files,
Dlg.LENGTH_SHORT);
return;
}
new LoadingDialog<Void, Void, Boolean>(getActivity(), false) {
@Override
protected Boolean doInBackground(Void... params) {
return getCurrentLocation() != null
&& BaseFileProviderUtils.fileCanWrite(getActivity(),
getCurrentLocation());
}// doInBackground()
@Override
protected void onPostExecute(Boolean result) {
super.onPostExecute(result);
if (result)
showNewDirectoryCreationDialog();
else
Dlg.toast(getActivity(),
R.string.afc_msg_cannot_create_new_folder_here,
Dlg.LENGTH_SHORT);
}// onProgressUpdate()
}.execute();
}