我需要帮助创建一个文件选择器,该选择器获取选择为 Uri 的音频文件的路径。
这是我目前用作文件选择器的内容:
public void selectedAudio() {
Intent intent = new Intent();
intent.setType("audio/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
startActivityForResult(Intent.createChooser(intent, "Choose Sound File"), 1);
}
但我不知道如何获取所选文件的路径。