在活动中显示转换后的文件

时间:2018-12-31 08:16:20

标签: java android

我正在android studio中开发视频转换器。我能够成功转换文件,并可以使用以下命令播放结果文件:

File file = new File(filepath);
Uri path = Uri.fromFile(file);
Intent Openintent = new Intent(Intent.ACTION_VIEW);
Openintent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
Openintent.setDataAndType(path, "audio/mp3");
try {
    startActivity(Openintent);
}
catch (ActivityNotFoundException e) {

}

但是我找不到任何代码来打开生成的文件夹并显示已标记的转换文件。就像我们在Windows Locate file in folder中一样。

1 个答案:

答案 0 :(得分:4)

这是打开已转换文件的包含文件夹的方法

String folderPath = filepath.substring(0 , filepath.lastIndexOf('/') + 1);
Uri uri = Uri.parse(folderPath);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "resource/folder");
startActivity(intent);