Средство выбора файлов Android [закрыто]


115

Я хочу сделать загрузчик файлов. Поэтому мне нужен селектор файлов, но я не хочу писать это сам. Нахожу файловый менеджер OI и думаю он мне подходит. Но как заставить пользователя установить файловый менеджер OI? Если я не могу, есть ли лучший способ включить файловый менеджер в мое приложение? Спасибо




Ответы:


267

РЕДАКТИРОВАТЬ ( 02 января 2012 г. ):

Я создал небольшой проект библиотеки 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();
    }
}

Затем вы должны слушать для выбранного файла Uriв onActivityResult()следующем образом:

@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);
}

getPath()Метод в моей FileUtils.javaNST:

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;
} 

1
Я бы даже зашел так далеко, что также направил их к приложению на рынке.
Куртис Нусбаум

2
Но я не могу найти FileUtils ....
Bear

2
@Bicou Спасибо за замечание. Ваш толчок помог мне перестать лениться и внести небольшие изменения. :-) Я только что выложил обновление библиотеки, которая включает лицензию.
Пол Берк,

23
В этом ответе URI не рассматривается так: "content: //com.android.providers.media.documents/document/image: 62".
wangqi060934

2
@ wangqi060934: как получилось работать с таким uri? пожалуйста, поделитесь своим опытом для достижения функциональности
Мехул Джойсар

-3

Я использовал 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
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.