如何打开文件位置以显示文件?
How can I open file location to show a file?
我正在制作视频播放器应用。我想添加选项,例如,当用户点击时,它会打开默认文件管理器以显示此视频文件的位置。
Here is sample from Windows OS
如有任何帮助,我们将不胜感激!
您可以通过此方法完成此操作。
public void open_Folder(String location)
{
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath()
+ File.separator+ location + File.separator);
intent.setDataAndType(uri, "set your data type");
startActivity(Intent.createChooser(intent, "Select file manager app."));
}
我正在制作视频播放器应用。我想添加选项,例如,当用户点击时,它会打开默认文件管理器以显示此视频文件的位置。
Here is sample from Windows OS
如有任何帮助,我们将不胜感激!
您可以通过此方法完成此操作。
public void open_Folder(String location)
{
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath()
+ File.separator+ location + File.separator);
intent.setDataAndType(uri, "set your data type");
startActivity(Intent.createChooser(intent, "Select file manager app."));
}