安卓文件选择器

125

我想制作一个文件上传器,因此需要一个文件选择器,但我不想自己编写。我发现 OI 文件管理器并认为它适合我。 但是,如何强制用户安装 OI 文件管理器呢? 如果无法强制,是否有更好的方法将文件管理器包含在我的应用程序中? 谢谢


1
我使用 https://github.com/18446744073709551615/android-file-chooser-dialog。 - 18446744073709551615
https://github.com/criss721/Android-FileSelector - Criss
请查看以下链接:https://stackoverflow.com/a/59104787/3141844https://github.com/criss721/Android-FileSelector - Criss
2个回答

273

编辑2012年1月2日):

我创建了一个小型开源Android库项目,简化了此过程,同时提供了一个内置的文件浏览器(以防用户没有一个)。它非常容易使用,只需要几行代码。

您可以在GitHub上找到它:aFileChooser


原始内容:

如果您想让用户能够选择系统中的任何文件,则需要包含自己的文件管理器或建议用户下载一个。我认为最好的方法是在像这样的Intent.createChooser()中查找可打开的内容:

private static final int FILE_SELECT_CODE = 0;

private void showFileChooser() {
    Intent intent = new Intent(Intent.ACTION_GET_CONTENT); 
    intent.setType("*/*"); 
    intent.addCategory(Intent.CATEGORY_OPENABLE);

    try {
        startActivityForResult(
                Intent.createChooser(intent, "Select a File to Upload"),
                FILE_SELECT_CODE);
    } catch (android.content.ActivityNotFoundException ex) {
        // Potentially direct the user to the Market with a Dialog
        Toast.makeText(this, "Please install a File Manager.", 
                Toast.LENGTH_SHORT).show();
    }
}

接下来您可以在onActivityResult()方法中监听所选文件的Uri,如下:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    switch (requestCode) {
        case FILE_SELECT_CODE:
        if (resultCode == RESULT_OK) {
            // Get the Uri of the selected file 
            Uri uri = data.getData();
            Log.d(TAG, "File Uri: " + uri.toString());
            // Get the path
            String path = FileUtils.getPath(this, uri);
            Log.d(TAG, "File Path: " + path);
            // Get the file instance
            // File file = new File(path);
            // Initiate the upload
        }
        break;
    }
    super.onActivityResult(requestCode, resultCode, data);
}

FileUtils.java中的getPath()方法是:

public static String getPath(Context context, Uri uri) throws URISyntaxException {
    if ("content".equalsIgnoreCase(uri.getScheme())) {
        String[] projection = { "_data" };
        Cursor cursor = null;

        try {
            cursor = context.getContentResolver().query(uri, projection, null, null, null);
            int column_index = cursor.getColumnIndexOrThrow("_data");
            if (cursor.moveToFirst()) {
                return cursor.getString(column_index);
            }
        } catch (Exception e) {
            // Eat it
        }
    }
    else if ("file".equalsIgnoreCase(uri.getScheme())) {
        return uri.getPath();
    }

    return null;
} 

2
但我找不到FileUtils.... - Bear
2
@Bicou 感谢你的提醒。你的催促帮助我停止了懒惰,做出了一些小改变。 :-) 我刚刚推送了一个更新到库中,包括许可证。 - Paul Burke
26
这个回答不考虑像这样的URI:"content://com.android.providers.media.documents/document/image:62"。 - wangqi060934
2
@wangqi060934:你是怎么处理这样的URI的?请分享一下你的经验,以实现这个功能。 - Mehul Joisar
1
或者您可以使用这个:https://www.github.com/Angads25/android-filepicker - Angad Singh
显示剩余24条评论

-2

我用AndExplorer来实现这个目的,我的解决方案是弹出一个对话框,然后重定向到市场去安装缺失的应用程序:

我的startCreation正在尝试调用外部文件/目录选择器。如果它丢失了,请调用show installResultMessage函数。

private void startCreation(){
    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_PICK);
    Uri startDir = Uri.fromFile(new File("/sdcard"));

    intent.setDataAndType(startDir,
            "vnd.android.cursor.dir/lysesoft.andexplorer.file");
    intent.putExtra("browser_filter_extension_whitelist", "*.csv");
    intent.putExtra("explorer_title", getText(R.string.andex_file_selection_title));
    intent.putExtra("browser_title_background_color",
            getText(R.string.browser_title_background_color));
    intent.putExtra("browser_title_foreground_color",
            getText(R.string.browser_title_foreground_color));
    intent.putExtra("browser_list_background_color",
            getText(R.string.browser_list_background_color));
    intent.putExtra("browser_list_fontscale", "120%");
    intent.putExtra("browser_list_layout", "2");

    try{
         ApplicationInfo info = getPackageManager()
                                 .getApplicationInfo("lysesoft.andexplorer", 0 );

            startActivityForResult(intent, PICK_REQUEST_CODE);
    } catch( PackageManager.NameNotFoundException e ){
        showInstallResultMessage(R.string.error_install_andexplorer);
    } catch (Exception e) {
        Log.w(TAG, e.getMessage());
    }
}

该方法只是弹出一个对话框,如果用户希望从市场安装外部应用程序

private void showInstallResultMessage(int msg_id) {
    AlertDialog dialog = new AlertDialog.Builder(this).create();
    dialog.setMessage(getText(msg_id));
    dialog.setButton(getText(R.string.button_ok),
            new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface dialog, int which) {
                    finish();
                }
            });
    dialog.setButton2(getText(R.string.button_install),
            new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface dialog, int which) {
                    Intent intent = new Intent(Intent.ACTION_VIEW);
                    intent.setData(Uri.parse("market://details?id=lysesoft.andexplorer"));
                    startActivity(intent);
                    finish();
                }
            });
    dialog.show();
}

那么,你的应用程序用户的要求之一是...安装AndExplorer吗? - Phantômaxx

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接