gpt4 book ai didi

android - 如何使用 Intent 选择文件浏览器来选择文件

转载 作者:IT老高 更新时间:2023-10-28 23:18:29 29 4
gpt4 key购买 nike

如何使用intent提示用户选择“完成操作”来选择应用程序选择文件(假设设备中有几个应用程序浏览文件)

我想使用扩展名过滤文件..(例如:*.sav、*.props)

提前谢谢你

最佳答案

你可以这样使用:

    ....  
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
startActivityForResult(intent, YOUR_RESULT_CODE);
....

但是我真的怀疑你可以设置一个过滤器第三方文件浏览器。或者您可以尝试使用此文件对话框:http://code.google.com/p/android-file-dialog/

关于android - 如何使用 Intent 选择文件浏览器来选择文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9923760/

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