如何以编程方式(使用 Intent)在 Android 中打开 My Files 文件夹?
Posted
技术标签:
【中文标题】如何以编程方式(使用 Intent)在 Android 中打开 My Files 文件夹?【英文标题】:How to open the My Files folder in Android Programatically (using Intent)? 【发布时间】:2013-08-08 11:56:39 【问题描述】:我正在使用以下代码打开画廊、音乐播放器、Dropbox 和联系人,我希望我的文件文件夹以编程方式打开,如果我需要传递任何特定的意图参数来获取,请告诉我文件管理器打开。
如果通过意图无法实现,请给我一个 sn-p 或提示以编程方式打开“我的文件”文件夹。
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
Intent i = Intent.createChooser(intent, "View Default File Manager");
startActivityForResult(i, CHOOSE_FILE_REQUESTCODE);
谢谢。
【问题讨论】:
【参考方案1】:您可以使用此代码归档文件。
int PICKFILE_RESULT_CODE=1;
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
startActivityForResult(intent,PICKFILE_RESULT_CODE);
这将帮助您浏览存储中的文件。
【讨论】:
这段代码对我有帮助......但我只想在我的文件探索中查看 .pdf 扩展名文件。怎么可能? 这将有助于打开自定义文件,那里有表格可以看到indyvision.net/android-snippets/…【参考方案2】:如果你想打开三星我的文件应用程序,试试下面的代码。
Intent intent = new Intent("com.sec.android.app.myfiles.PICK_DATA");
intent.putExtra("CONTENT_TYPE", "*/*");
startActivityForResult(intent, CHOOSE_FILE_REQUESTCODE);
【讨论】:
如果不是三星怎么办?有点像中国手机? @AcademyofProgrammer 最好的办法是制作“可链接的”意图,如果 Intent 是可解析的,则请求 PackageManager。例如:if(intent.resolveActivity(getPackageManager())==null)intent=nextIntent;...
【参考方案3】:
最好在项目中包含一个处理这种情况的库。
This 为我工作:
此库显示第三方应用程序列表。它还有自己的文件浏览器用于选择文件。
【讨论】:
【参考方案4】:糟糕的是,大多数 Android 发行版可能附带也可能不附带文件管理器,即便如此,处理 CHOOSE_FILE_REQUESTCODE
的版本也可能不附带。
因此,您可以创建自己的文件选择器活动。幸运的是,有许多现成的可用:
http://code.google.com/p/android-filechooser/
https://developers.inkfilepicker.com/docs/android/
【讨论】:
CHOOSE_FILE_REQUESTCODE 是程序员定义的,不是安卓定义的常量,对吧? @Radu 所有系统定义的操作都定义为Intent
类中的ACTION_
常量。 CHOOSE_FILE_REQUESTCODE
不存在。【参考方案5】:
试试下面的代码。如果有可用的文件管理器,它将以菜单的形式弹出以供用户选择。
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
startActivityForResult(intent, CHOOSE_FILE_REQUESTCODE);
【讨论】:
我们如何使用它只打开特定文件?我的意思是如果我想打开“.dco”扩展名的文件,会怎样? 我找到了这个链接,它只会帮助打开自定义文件,那里有表格可以看到indyvision.net/android-snippets/…【参考方案6】:您必须特别提及资源管理器应用程序的包名称。请在下面找到示例以在 ES Explorer 中打开特定文件夹。
public void openfolderInexplorer(String path)
Intent intent = this.getPackageManager().getLaunchIntentForPackage("com.estrongs.android.pop");
if (intent != null)
// If the application is avilable
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.parse(path);
intent.setDataAndType(uri, "resource/folder");
this.startActivity(intent);
else
// Play store to install app
intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setData(Uri.parse("market://details?id=" +
"com.estrongs.android.pop"));
this.startActivity(intent);
【讨论】:
以上是关于如何以编程方式(使用 Intent)在 Android 中打开 My Files 文件夹?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Android 10 中以编程方式安装任何 Android 应用