MediaPicker Library for Android (AndroidX)
A Media library for Android for selecting single/multiple media files(image/video/audio).
Setup
Step 1: Add the dependency
Usage
Step 1: Declare and Initialize MediaPicker.
Java
Kotlin
Explanation:
1. MediaPickerConfig:
It is use to set the configuration.
- .setAllowMultiSelection(booleanValue): tells whether to select single file or multiple file.
- .setUriPermanentAccess(booleanValue): grant uri access permission.
- Temporary uri may not work once your app terminates(so storaring temporary uri in database is not good practise, so use permanent uri in such case).
- This option only works while selecting file from default android intent.
- The file user select from our custom ui always return uri with permanent access grant.
- .setShowConfirmationDialog(booleanValue): tells whether to show confirmation dialog on selecting the file(only work in single file selection).
eg.
2. ExtraListener:
In Android many times the file not exist physically but may contain uri. Such file(uri) may produce error. So in our library we are filtering out invalid uri. So if end-developer wants to know if library filtered out uris, they can set .setFileMissingListener()
.
Java
Kotlin
3. Media types:
It's a type of file user want to select.
- IMAGE : for picking image files
- VIDEO : for picking video files
- AUDIO : for picking audio files
URI:
We will be returning the list of Uri after selecting the files. That's why it is better to know about Uri first.
A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.
In Android, Content providers manage access to a structured set of data. They encapsulate the data, and provide mechanisms for defining data security. Content providers are the standard interface that connects data in one process with code running in another process.
You can get almost all information from uri.
URI usages:
- Get file from uri:
- Get mime from uri:
- Used in Glide: