【发布时间】:2011-10-04 06:15:18
【问题描述】:
我正在尝试仅显示 MP3 文件:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/mp3");
startActivityForResult(Intent.createChooser(intent, "Music File"), FIND_MUSIC);
但它最终也会列出 *.3gp 文件。我怎样才能仅限于 *.mp3 文件?
我尝试过 setType("mp3") 但 Intent 无法找到任何加载文件的应用。
【问题讨论】:
标签: android android-intent mp3