Android自定义控件之图片添加器

ZzImageBox

A powerful image container for adding and removing images.

传送门:https://github.com/zhouzhuo810/ZzImageBox

功能简介:

1.支持添加、删除、默认图片的配置;

2.支持最大行数限制;

3.支持每行数量修改;

4.支持添加、删除、图片点击回调接口。

5.支持Box的添加(.addImage(String imagePath))和删除(.removeImage(int position));

6.支持加载本地和网络图片(使用方法.addImage(String url));

7.支持自定义图片加载框架(使用.setOnlineImageLoader(ZzImageBox.OnlineImageLoader listener),
如果有网络图片必须使用此方法);

8.支持左右margin设置。

Gradle

    compile 'me.zhouzhuo.zzimagebox:zz-image-box:1.0.6'

内部依赖项说明:

    compile 'com.android.support:recyclerview-v7:27.0.1'

也就是说添加ZzImageBox同时会添加RecyclerView包。

Maven


  me.zhouzhuo.zzimagebox
  zz-image-box
  1.0.4
  pom

What does it look like?

zz_image_box_demo.gif

How to use it ?

注意:

  • 为了保证图片是正方形,需要保证ZzImageBox水平方向是填满屏幕的,也就是说父容器不能有padding和margin。
  • ZzImageBox的marginLeft属性使用zib_left_margin代替;
  • ZzImageBox的marginRight属性使用zib_right_margin代替;
  • 如果不需要显示添加图片,可以设置zib_img_add为透明颜色;
  • 加载网络图片必须添加.setOnlineImageLoader();方法,
    onLoadImage(ImageView iv, String url)中自行使用Glide等框架加载;

xml:

    

java:

        final ZzImageBox imageBox = (ZzImageBox) findViewById(R.id.zz_image_box);
        //如果需要加载网络图片,添加此监听。
        imageBox.setOnlineImageLoader(new ZzImageBox.OnlineImageLoader() {
            @Override
            public void onLoadImage(ImageView iv, String url) {
                Log.d("ZzImageBox", "url=" + url);
                Glide.with(MainActivity.this).load(url).into(iv);
            }
        });
        imageBox.setOnImageClickListener(new ZzImageBox.OnImageClickListener() {
            @Override
            public void onImageClick(int position, String filePath) {
                Log.d("ZzImageBox", "image clicked:" + position + "," + filePath);
            }

            @Override
            public void onDeleteClick(int position, String filePath) {
                imageBox.removeImage(position);
                Log.d("ZzImageBox", "delete clicked:" + position + "," + filePath);
                Log.d("ZzImageBox", "all images\n"+imageBox.getAllImages().toString());
            }

            @Override
            public void onAddClick() {
                imageBox.addImage(null);
                Log.d("ZzImageBox", "add clicked");
                Log.d("ZzImageBox", "all images\n"+imageBox.getAllImages().toString());
            }
        });

属性说明:

    
        
        
        
        
        
        
        
        
        
    
属性名 属性类型 属性功能
zib_max_line integer 最大行数
zib_img_size_one_line integer 每行数量
zib_img_padding dimension 图片之间的间距
zib_img_default drawable/color 默认图片资源id
zib_img_delete drawable/color 删除图片资源id
zib_img_add drawable/color 添加图片资源id
zib_img_deletable boolean 是否显示删除图片
zib_left_margin dimension 控件距离屏幕左边距离
zib_right_margin dimension 控件距离屏幕右边距离

更新日志

v1.0.6

  • 支持动态设置左间距,使用setLeftMarginInPixel()方法;
  • 支持动态设置右边距,使用setRightMarginInPixel()方法;
  • 支持动态设置图片间距,使用setImagePadding()方法;
  • 支持动态设置单行图片数量,使用setImageSizeOneLine()方法;
  • 更新RecyclerView版本到com.android.support:recyclerview-v7:27.0.1

v1.0.5

  • 支持加载网络图片;

v1.0.4

  • 点击图片返回图片对象,用于适应转场动画。

v1.0.3

  • 新增zib_left_margin和zib_right_margin设置左右外间距属性。

v1.0.2

  • 首次提交。

License

Copyright © zhouzhuo810

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.

你可能感兴趣的:(Android自定义控件之图片添加器)