Androidファイルチューザー[終了]


115

ファイルアップローダーを作りたいです。ファイルチューザが必要なので、自分で書きたくありません。OIファイルマネージャを見つけて、自分に合っていると思います。しかし、どうすればユーザーにOIファイルマネージャのインストールを強制できますか?できない場合は、ファイルマネージャーをアプリに含めるより良い方法はありますか?どうも




回答:


267

編集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();
    }
}

その後、選択したファイルのために聞くだろうUrionActivityResult()そうように:

@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.javaは:

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
私もそれらを市場に出回るアプリに案内するまで行きます。
Kurtis Nusbaum、2011年

2
しかし、FileUtilsが見つかりません....
クマ

2
@Bicouメモをありがとう。あなたのナッジは私が怠惰であるのをやめて、いくつかの小さな変更を加えるのを助けました。:-)ライセンスを含むライブラリに更新をプッシュしました。
ポールバーク

22
この回答では、「content://com.android.providers.media.documents/document/image:62」のようなURIは考慮されていません。
wangqi060934 2015

2
@ wangqi060934:どのようにしてこのようなURIを操作しましたか?機能を実現するための経験を共有してください
Mehul Joisar

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

したがって、アプリユーザーの要件の1つは... AndExplorerをインストールすることです。
Phantômaxx
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.