0
我需要幫助創建一個文件選擇器來獲取作爲Uri選擇的音頻文件的路徑。從文件選取器獲取音頻文件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);
}
但我不知道怎麼去選擇的文件的路徑。