FileListerDialog


Source link: https://github.com/FirzenYogesh/FileListerDialog

FileListerDialog

FileListerDialog helps you to list and pick file/directory. Library is built for Android

Getting Started

Installing

To use this library simply import it by placing the following line under dependencies in your app module's build.gradle file

This library is posted in jCenter


dependencies {

 implementation 'yogesh.firzen:FilesLister:1.0.1.g'
 
}
 

If any problem occured while importing please add this line to your app module's build. gradle file


repositories {

 maven {
url "https://dl.bintray.com/firzenyogesh/maven"
}

 
}
 

This library has dependencies


dependencies {

 implementation 'com.android.support:appcompat-v7:26.0.0'

 implementation 'com.android.support:design:26.0.0'

 implementation 'com.android.support:recyclerview-v7:26.0.0'

 implementation 'yogesh.firzen:MukkiyaSevaigal:1.0.6'
 
}
 

Usage

After importing the library you can use FileListerDialog to list the files and pick one among them. Simply follow the steps

  1. Create an instance of FileListerDialog by using the static method createFileListerDialog()

    Default Instance:

    
    FileListerDialog fileListerDialog = FileListerDialog.createFileListerDialog(context);
     

    Instance with a theme for Dialog:

    
    FileListerDialog fileListerDialog = FileListerDialog.createFileListerDialog(context, themeId);
     
  2. Set OnFileSelectedListener so that you get what file/ directory has been selected

    
    filelister.setOnFileSelectedListener(new OnFileSelectedListener() {
    
     @Override
    
     public void onFileSelected(File file, String path) {
    
     //your code here
    
     
    }
    
     
    }
    );
     
  3. Set the default directory to load when showing the dialog:

    Using a file

    
    fileListerDialog.setDefaultDir(file);
     

    Using a file path

    
    fileListerDialog.setDefaultDir(path);
     
  4. Set the File Filter type to filter the type of files to be listed:

    
    fileListerDialog.setFileFilter(FileListerDialog.FILE_FILTER.ALL_FILES);
     

    Possible values are:

    
    FileListerDialog.FILE_FILTER.ALL_FILES
     FileListerDialog.FILE_FILTER.DIRECTORY_ONLY
     FileListerDialog.FILE_FILTER.IMAGE_ONLY
     FileListerDialog.FILE_FILTER.VIDEO_ONLY
     FileListerDialog.FILE_FILTER.AUDIO_ONLY 
  5. Finally call show() to open the dialog.

    
    fileListerDialog.show();
     

Screenshots

FileListerDialog

Create a new folder

When a Directory is picked

When a file is picked

Authors

License

Copyright 2017 Yogesh Sundaresan  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

Android library to capture screenshot from your app.

Android JNI model implementation of Rob Napier's RNCryptor.

Powerful and flexible RecyclerAdapter.

An easy to use AsyncTask replacement - life cycle aware and leak preventing.

Toothpick is a scope tree based Dependency Injection (DI) library for Java.

It is a full-featured, runtime based, but reflection free, implementation of JSR 330.

Simple event creation.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes