10

我正在使用以下代码打开图库、音乐播放器、Dropbox 和联系人,我希望我的文件文件夹以编程方式打开,如果我需要传递任何特定的意图参数以获取文件管理器,请告诉我打开。

如果通过意图无法实现,请给我一个片段或提示以编程方式打开“我的文件”文件夹。

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
Intent i = Intent.createChooser(intent, "View Default File Manager");
startActivityForResult(i, CHOOSE_FILE_REQUESTCODE); 

谢谢。

4

6 回答 6

5

您可以使用此代码归档文件。

int PICKFILE_RESULT_CODE=1;            
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);                 
intent.setType("file/*");              
startActivityForResult(intent,PICKFILE_RESULT_CODE);

这将帮助您浏览存储中的文件。

于 2014-03-11T08:08:29.853 回答
1

如果你想打开三星我的文件应用程序,试试下面的代码。

Intent intent = new Intent("com.sec.android.app.myfiles.PICK_DATA");              
intent.putExtra("CONTENT_TYPE", "*/*");
startActivityForResult(intent, CHOOSE_FILE_REQUESTCODE); 
于 2013-08-22T12:12:47.747 回答
1

最好在项目中包含一个处理这种情况的库。

对我有用:

此库显示第三方应用程序列表。它还有自己的文件浏览器,用于选择文件。

于 2013-10-09T16:28:43.003 回答
0

不好的是,大多数 Android 发行版可能会或可能不会附带文件管理器,即便如此,可能不会附带处理CHOOSE_FILE_REQUESTCODE.

因此,您可以创建自己的文件选择器活动。幸运的是,有许多现成的可用:

http://code.google.com/p/android-filechooser/

https://developers.inkfilepicker.com/docs/android/

于 2013-08-07T08:03:44.773 回答
0

试试下面的代码。如果有任何可用的文件管理器,那么它将以菜单的形式弹出以供用户选择。

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
startActivityForResult(intent, CHOOSE_FILE_REQUESTCODE); 
于 2013-08-07T08:05:11.143 回答
0

您必须特别提及资源管理器应用程序的包名称。请在下面找到示例以在 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);
        }
于 2017-07-26T07:52:58.090 回答