zeallat / NaraeImagePicker

MultiImagePicker for Android Application, written in Kotlin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NaraeImagePicker CircleCI codebeat badge

Kotlin GitHub license Android Arsenal

MultiImagePicker for Android Application, written in Kotlin

It provides...

  • Pick multi image
  • Provide two mode of activity, One is Folder-View, other is File-View.
  • Support show detail of Image (using PhotoView)
  • check Runtime Permissions automatically

Usages

rootProject/build.gradle

allprojects {
    repositories {
	    maven { url 'https://jitpack.io' }
    }
}

app/build.gradle

dependencies {
     implementation 'com.github.WindSekirun:NaraeImagePicker:1.6.0'
}

Code

PickerSettingItem item = new PickerSettingItem();
item.setPickLimit(Constants.LIMIT_UNLIMITED);
item.setViewMode(ViewMode.FolderView);
item.setEnableUpInParentView(true);
item.setDisableZoomMode(true);

NaraeImagePicker.instance.start(this, item, new OnPickResultListener() {
    @Override
    public void onSelect(int resultCode, @NotNull ArrayList<String> imageList) {
        if (resultCode == NaraeImagePicker.PICK_SUCCESS) {
            
        } else {
            Toast.makeText(MainActivity.this, "failed to pick image", Toast.LENGTH_SHORT).show();
        }
    }
});

No need to implement onActivityResult, NaraeImagePicker will handle startActivityForResult, onActivityResult for you.

Customization in PickerSettingItem

    var viewMode = ViewMode.FolderView
    var pickLimit = Constants.LIMIT_UNLIMITED
    var enableUpInParentView = false
    var disableZoomMode = false
    var pickerTitle = "Please select picture."
    var exceedLimitMessage = "Can\\'t select more than %s pictures"
    var disableZoomMode = false
    var themeResId: Int? = null // from 1.7.0

resolve DuplicateRelativeFileException: More than one file...

you should insert this statement in android block in app/build.gradle

packagingOptions {
    exclude 'META-INF/library_release.kotlin_module'
}

License

Copyright 2017 WindSekirun (DongGil, Seo)

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.

About

MultiImagePicker for Android Application, written in Kotlin

License:Apache License 2.0


Languages

Language:Kotlin 100.0%