在我的 android 应用程序中,我使用下面的代码列出了 mp3 文件以供选择和上传。
我想知道是否可以根据文件的持续时间及其类型来过滤文件。
Intent intent = new Intent();
intent.setType("audio/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
try {
startActivityForResult(Intent.createChooser(intent, "Select your Audio"), Global.FILE_FROM_SD);
}
catch (android.content.ActivityNotFoundException ex) {
// Potentially direct the user to the Market with a Dialog
Toast.makeText(WizardStep1.this,
"Please install a File Manager.",
Toast.LENGTH_SHORT).show();
}