GithubHelp home page GithubHelp logo

hng003 / exfilepicker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bartwell/exfilepicker

0.0 2.0 0.0 17.69 MB

Open source Android library. Implement choosing files and directories in your application.

License: MIT License

Java 100.00%

exfilepicker's Introduction

ExFilePicker

ExFilePicker is an open source android library that allows developers to easily implement choosing files and directories in application.

Screenshotes:

Screenshot Screenshot Screenshot

Features

It can:

  • Choose one file
  • Choose one directory
  • Choose few files and/or directories
  • Filter by file extension
  • Sorting
  • Creating directories

Download

  • Gradle:
repositories {
    jcenter()
}

dependencies {
    compile 'ru.bartwell:exfilepicker:2.1'
}
  • AAR:

Download AAR

Usage

1. Add ExFilePicker library as a dependency to your project

2. Use methods from ExFilePicker class to launch picker activity and receive result in onActivityResult():

	private static final int EX_FILE_PICKER_RESULT = 0;

	// ...
	
		ExFilePicker exFilePicker = new ExFilePicker();
        exFilePicker.start(this, EX_FILE_PICKER_RESULT);

	// ...
	
	@Override
	public void onActivityResult(int requestCode, int resultCode, Intent data) {
		if (requestCode == EX_FILE_PICKER_RESULT) {
		    ExFilePickerResult result = ExFilePickerResult.getFromIntent(data);
			if (result != null && result.getCount() > 0) {
				// Here is object contains selected files names and path
			}
		}
	}

Configuration

Class ExFilePicker have following methods for configuration:

  • setCanChooseOnlyOneItem() - if true, user can select only one item. False by default.

  • setShowOnlyExtensions() - only files with this extensions will showed.

  • setExceptExtensions() - files with this extensions will excluded.

  • setChoiceType() - one of value from ChoiceType. Set what user can select - only files, only directories or both. Both by default.

  • setStartDirectory() - This path will be open when ExFilePicker activity will called.

  • setNewFolderButtonDisabled() - if true, button "New folder" will not showing. You can also remove WRITE_EXTERNAL_STORAGE permission in this case.

  • setSortButtonDisabled() - if true, button "Sort" will not showing.

  • setQuitButtonEnabled() - if true, quit button will showing.

  • setSortingType() - one of value from SortingType. Set default sorting. NAME_ASC by default.

  • setUseFirstItemAsUpEnabled() - enable link to the parent directory as first item in list.

Feel free to look sample.

Customization

ExFilePicker library provide two themes for ExFilePicker's activity: dark and light (ExFilePickerThemeDark and ExFilePickerThemeLight respectively). If you need to customize ExFilePicker's activity view, you can extend your own theme from any ExFilePicker's theme and override needed options. To set theme you need specify activity in Manifest:

<activity
    android:name="ru.bartwell.exfilepicker.ui.activity.ExFilePickerActivity"
    android:theme="@style/ExFilePickerThemeDark"
    tools:replace="android:theme"/>

Sample Application

Sample application is no more available on Google Play: account 'bartwell' was banned and all appeals was declined or ignored. To see how it works you can download debug version here.

License

The MIT License (MIT)

Copyright (c) 2013 Artem Bazhanov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

exfilepicker's People

Contributors

bartwell avatar pylersm avatar npes87184 avatar

Watchers

James Cloos avatar nozaa avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.