ตัวเลือกไฟล์ Android [ปิด]


115

ฉันต้องการสร้างตัวอัปโหลดไฟล์ ดังนั้นฉันจึงต้องการตัวเลือกไฟล์ แต่ฉันไม่ต้องการเขียนสิ่งนี้ด้วยตัวเอง ฉันพบตัวจัดการไฟล์ OI และฉันคิดว่ามันเหมาะกับฉัน แต่ฉันจะบังคับให้ผู้ใช้ติดตั้งตัวจัดการไฟล์ OI ได้อย่างไร ถ้าฉันทำไม่ได้มีวิธีที่ดีกว่าในการรวมตัวจัดการไฟล์ในแอพของฉันหรือไม่ ขอบคุณ




คำตอบ:


267

แก้ไข ( 02 ม.ค. 2555 ):

ฉันสร้างโครงการไลบรารีแอนดรอยด์โอเพ่นซอร์สขนาดเล็กที่ช่วยเพิ่มความคล่องตัวให้กับกระบวนการนี้ในขณะเดียวกันก็มีตัวสำรวจไฟล์ในตัว (ในกรณีที่ผู้ใช้ไม่มีอยู่) ใช้งานง่ายมากโดยใช้โค้ดเพียงไม่กี่บรรทัด

คุณสามารถค้นหาได้ที่ GitHub: aFileChooser


ORIGINAL

หากคุณต้องการให้ผู้ใช้สามารถเลือกไฟล์ใดก็ได้ในระบบคุณจะต้องรวมตัวจัดการไฟล์ของคุณเองหรือแนะนำให้ผู้ใช้ดาวน์โหลดไฟล์ ฉันเชื่อว่าสิ่งที่ดีที่สุดที่คุณทำได้คือมองหาเนื้อหาที่ "เปิดได้" ใน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.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

2
แต่ฉันไม่พบ FileUtils ....
หมี

2
@Bicou ขอบคุณสำหรับบันทึก การสะกิดของคุณช่วยให้ฉันเลิกขี้เกียจและทำการเปลี่ยนแปลงเล็กน้อย :-) ฉันเพิ่งส่งการอัปเดตไปยังห้องสมุดที่มีใบอนุญาต
Paul Burke

24
คำตอบนี้ไม่ได้พิจารณา uri เช่นนี้: "content: //com.android.providers.media.documents/document/image: 62"
wangqi060934

2
@ wangqi060934: คุณทำงานกับอูริได้อย่างไร? โปรดแบ่งปันประสบการณ์ของคุณเพื่อให้สามารถใช้งานได้
Mehul Joisar

-3

ฉันใช้ AndExplorer เพื่อจุดประสงค์นี้และวิธีแก้ปัญหาของฉันคือป๊อปอัปกล่องโต้ตอบจากนั้นเปลี่ยนเส้นทางไปยังตลาดเพื่อติดตั้งแอปพลิเคชันที่ผิดพลาด:

startCreation ของฉันพยายามเรียกตัวเลือกไฟล์ / ไดเรกทอรีภายนอก หากไม่มีสายให้แสดงฟังก์ชัน 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
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.