【发布时间】:2014-04-02 09:25:53
【问题描述】:
Android 是否可以使用 Intent 从 SD 卡中浏览和选择任何文件?
类似:
String uri = (Environment.getExternalStorageDirectory()).getAbsolutePath();
Intent i = new Intent(Intent.ACTION_PICK, Uri.parse(uri));
我正在尝试使用蓝牙将文件发送到其他设备。如果我在我的代码中给出文件名的完整路径,我可以发送。我希望我的用户选择应该发送的文件。
【问题讨论】:
标签: android android-intent bluetooth android-bluetooth android-implicit-intent