gpt4 book ai didi

java - 请求 Android Studio 许可后继续

转载 作者:行者123 更新时间:2023-12-01 16:23:54 25 4
gpt4 key购买 nike

代码:

ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE);
requestPermissions(new String[] { Manifest.permission.WRITE_EXTERNAL_STORAGE }, 1);

driverList = new ArrayList < > ();
file = new File(Environment.getExternalStorageDirectory().toString() + "/drivers.json");

if (!file.exists()) {
try {
file.createNewFile();
ServerTask st = new ServerTask("2019", true);
st.execute();
} catch (IOException e) {
e.printStackTrace();
}
} else {
load();
}

所以我有这个代码,在我安装了该应用程序后,我被要求获得许可,该应用程序无法继续。我始终接受许可

最佳答案

您在此处提供的代码仅说明对所需权限的检查以及请求权限的调用。请发布 requestPermissions 方法的代码

另请尝试以下操作

  1. 您必须在 Activity 中实现 onRequestPermissionResult 方法
  2. 在该方法中,您验证现在是否已授予权限
  3. 最后执行您需要实现的操作。

如果您已经这样做了,请在此处发布该代码 fragment 。

Refer to this documentation

关于java - 请求 Android Studio 许可后继续,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62197900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com