gpt4 book ai didi

带选择按钮的 Android 目录/文件夹选择器

转载 作者:搜寻专家 更新时间:2023-11-01 08:26:44 24 4
gpt4 key购买 nike

我是 android 编程的新手,正在尝试使用 SAF 启动文件资源管理器来选择文件夹/目录。选择文件时,下面的代码工作正常,但是,我希望用户选择一个文件夹(和/或创建一个新文件夹)。

  1. onActivityResult() 不会在选择文件夹时被调用。是否可以触发此事件?
  2. 如何在文件资源管理器中获得“选择”和“新建文件夹”按钮,如附图所示?

    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
    intent.setType("*/*");
    startActivityForResult(Intent.createChooser(intent, "打开文件夹"), PICK_REQUEST_CODE);

File explorer screenshot

最佳答案

I am new to android programming and trying to launch file explorer using SAF to select a folder/directory.

您的代码未使用存储访问框架。

however, I want user to select a folder (and/or create a new folder).

您不能为此使用ACTION_GET_CONTENT。您需要使用 ACTION_OPEN_DOCUMENT_TREE,这需要 Android 5.0。

关于带选择按钮的 Android 目录/文件夹选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44273647/

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