解决方法
您可以发送“ACTION_PICK”或“ACTION_GET_CONTENT”类型的意图.例如:
Intent i = new Intent(Intent.ACTION_GET_CONTENT); i.setType("audio/*"); Intent c = Intent.createChooser(i,"Select soundfile"); startActivityForResult(c,1);
看到这里了解更多信息:
http://developer.android.com/reference/android/content/Intent.html#ACTION_GET_CONTENT