我想創建一個文件上傳器。因此,我需要一個文件選擇器,但我不想自己寫這個。我發現OI文件管理器,我認爲它適合我。 但是我怎麼能強制用戶安裝OI文件管理器? 如果我不能,是否有更好的方法在我的應用程序中包含文件管理器? THXAndroid文件選擇器
回答
編輯(2012年1月2日):
我創建了一個小型的開源的Android庫項目,簡化了這一過程,同時還提供了內置文件瀏覽器(萬一用戶沒有一個禮物)。它使用起來非常簡單,只需要幾行代碼。
你可以在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();
}
}
這樣,你會在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);
}
的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;
}
我甚至可以直接將它們引導至市場上的應用程序。 –
Thx,但我得到的內容uri --- content://org.openintents.cmfilemanager/mimetype//mnt/sdcard/1318638826728.jpg 而不是文件路徑。 我可以將它轉換成文件路徑嗎? – Bear
已更新的答案顯示如何獲取文件路徑,以及創建一個File實例,爲您提供諸如file.getName()和file.getAbsolutePath()之類的便利回調。 –
我用AndExplorer爲了這個目的,我的解決方案我s彈出一個對話框,然後在市場上重定向安裝misssing應用程序:
我的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());
}
}
這methos只是拿起一個對話框,如果用戶想從市場
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?! –
安裝的外部應用程序,我認爲你不應該「強制」用戶做一些事情。如果你只需要一個簡單的文件選擇器,你可以自己寫。另一方面,如果你不想這樣做(對於你的用戶),你就會遠離你的用戶。
鏈接已死。 –
也許,http://code.google.com/p/android-file-chooser/ – 18446744073709551615
http://code.google.com/p/afiledialog/ – 18446744073709551615
Android File Browser幫了我很多。這很容易和有用。
- 1. android的文件選擇器
- 2. .puz文件選擇器 - Android
- 3. 文件瀏覽器(文件選擇)android
- 4. Android文件選擇器和文件Uploder
- 5. Android Java文件選擇器選擇應用程序來選擇文件
- 6. Mono for Android:顯示文件選擇器?
- 7. 處理文件選擇器android 6.0 webview
- 8. Android的 - 選擇文件
- 9. Android選擇mp3文件
- 10. android選擇器
- 11. Android文件選擇器不顯示文件
- 12. Android背景選擇器和文本顏色選擇器衝突
- 13. 如何在Android中調用默認文件選擇器選擇器?
- 14. Visual Studio文件選擇器
- 15. 文件目標選擇器
- 16. 文件選擇器(Swing)
- 17. 使GTK#文件選擇器只選擇文件
- 18. 文件選擇器選擇文件夾(安卓)
- 19. Android:目錄和文件選擇器android庫
- 20. 選擇文本文件並閱讀Android
- 21. 模擬器上的Android文件選擇器
- 22. Appcelerator鈦多選擇選擇器Android
- 23. NativeScript文件選取器Android
- 24. Dropbox文件選取器Android
- 25. Android文件選取器
- 26. Android選擇器和文字顏色
- 27. android webview文本選擇監聽器
- 28. android:自定義文本選擇器
- 29. android號碼選擇器文本顏色
- 30. OS X的圖像選擇器或文件選擇器Cocoa
我使用https://github.com/18446744073709551615/android-file-chooser-dialog – 18446744073709551615