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
<dependency>
<groupId>me.zhouzhuo.zzimagebox</groupId>
<artifactId>zz-image-box</artifactId>
<version>1.0.4</version>
<type>pom</type>
</dependency>
What does it look like?
zz_image_box_demo.gifHow 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:
<me.zhouzhuo.zzimagebox.ZzImageBox
android:id="@+id/zz_image_box"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:zib_left_margin="20dp"
app:zib_right_margin="20dp"
app:zib_img_padding="5dp"
app:zib_img_size_one_line="4"
app:zib_max_line="3"
app:zib_img_deletable="true"
app:zib_img_add="@drawable/iv_add"
app:zib_img_default="@drawable/iv_default"
app:zib_img_delete="@drawable/iv_delete"
/>
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());
}
});
属性说明:
<declare-styleable name="ZzImageBox">
<attr name="zib_max_line" format="integer" />
<attr name="zib_img_size_one_line" format="integer" />
<attr name="zib_img_padding" format="dimension|reference" />
<attr name="zib_img_default" format="color|reference" />
<attr name="zib_img_delete" format="color|reference" />
<attr name="zib_img_add" format="color|reference" />
<attr name="zib_img_deletable" format="boolean" />
<attr name="zib_left_margin" format="dimension|reference" />
<attr name="zib_right_margin" format="dimension|reference" />
</declare-styleable>
属性名 | 属性类型 | 属性功能 |
---|---|---|
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.
网友评论