1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 10:19:33 +02:00

file chooser used in FixBooksDirectoryActivity

This commit is contained in:
Nikolay Pultsin 2014-04-17 22:08:24 +01:00
parent c4418f673c
commit 64de74460d
11 changed files with 160 additions and 72 deletions

View file

@ -0,0 +1,88 @@
/*
* Copyright (C) 2007-2014 Geometer Plus <contact@geometerplus.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
package org.geometerplus.android.util;
import java.util.HashMap;
import android.app.Activity;
import android.content.Intent;
import android.os.Parcelable;
import group.pals.android.lib.ui.filechooser.FileChooserActivity;
import group.pals.android.lib.ui.filechooser.services.IFileProvider;
import group.pals.android.lib.ui.filechooser.io.localfile.LocalFile;
import org.geometerplus.zlibrary.core.resources.ZLResource;
public abstract class FileChooserUtil {
private FileChooserUtil() {
}
public static void runDirectoryChooser(
Activity activity,
int requestCode,
String title,
String initinalValue,
boolean chooseWritableDirsOnly
) {
final Intent intent = new Intent(activity, FileChooserActivity.class);
intent.putExtra(FileChooserActivity._TextResources, textResources(title));
intent.putExtra(FileChooserActivity._Rootpath, (Parcelable)new LocalFile(initinalValue));
intent.putExtra(FileChooserActivity._ActionBar, true);
intent.putExtra(FileChooserActivity._SaveLastLocation, false);
intent.putExtra(FileChooserActivity._DisplayHiddenFiles, true);
intent.putExtra(
FileChooserActivity._FilterMode,
chooseWritableDirsOnly
? IFileProvider.FilterMode.DirectoriesOnly
: IFileProvider.FilterMode.AnyDirectories
);
activity.startActivityForResult(intent, requestCode);
}
public static String pathFromData(Intent data) {
return data.getStringExtra(FileChooserActivity._FolderPath);
}
private static HashMap<String,String> textResources(String title) {
final HashMap<String,String> map = new HashMap<String,String>();
map.put("title", title);
final ZLResource dialogResource = ZLResource.resource("dialog");
final ZLResource buttonResource = dialogResource.getResource("button");
map.put("ok", buttonResource.getResource("ok").getValue());
map.put("cancel", buttonResource.getResource("cancel").getValue());
final ZLResource resource = dialogResource.getResource("fileChooser");
map.put("root", resource.getResource("root").getValue());
map.put("newFolder", resource.getResource("newFolder").getValue());
map.put("folderNameHint", resource.getResource("folderNameHint").getValue());
final ZLResource menuResource = resource.getResource("menu");
map.put("menuOrigin", menuResource.getResource("origin").getValue());
map.put("menuReload", menuResource.getResource("reload").getValue());
final ZLResource sortResource = resource.getResource("sortBy");
map.put("sortBy", sortResource.getValue());
map.put("sortByName", sortResource.getResource("name").getValue());
map.put("sortBySize", sortResource.getResource("size").getValue());
map.put("sortByDate", sortResource.getResource("date").getValue());
map.put("permissionDenied", resource.getResource("permissionDenied").getValue());
return map;
}
}