美文网首页
图片选择器

图片选择器

作者: ZhenJieHu | 来源:发表于2016-11-02 15:24 被阅读0次

    ImageSelector


    图片选择器, 支持多图选择和图片预览等功能。

    View on Github

    1. 支持jitpack
    2. 支持选择多张
    3. 支持选择图片数量上限
    4. 支持图片选择顺序
    5. 支持图片预览

    Screenshots & Gifs




    How to

    Step 1. Add the JitPack repository to your build file

    Add it in your root build.gradle at the end of repositories:

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

    Step 2. Add the dependency

    dependencies {
            compile 'com.github.huzhenjie:ImageSelector:1.0.2'
    }
    

    Step 3.

    Call select image in your code

    private static final int REQUEST_CODE_SELECT_IMG = 1;
    
    ...
    ImageSelector.show(this, REQUEST_CODE_SELECT_IMG);
    ...
    

    And override the method onActivityResult to get the results

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        switch (requestCode) {
            case REQUEST_CODE_SELECT_IMG:
                List<String> yourSelectImgPaths = data == null ? Collections.<String>emptyList() : data.getStringArrayListExtra("data");
                Log.d("imgSelector", "paths: " + yourSelectImgPaths);
                break;
            default:
                super.onActivityResult(requestCode, resultCode, data);
                break;
        }
    }
    

    View on Github

    相关文章

      网友评论

          本文标题:图片选择器

          本文链接:https://www.haomeiwen.com/subject/agivuttx.html