ImageUploadMask
Tags:
Preview

Download
compile 'com.chenglei.imageuploadmask:image-upload-mask:1.0.1'
Useage
ImageView imageView = (ImageView) findViewById(R.id.imageView);
ImageUploadMask mask = new ImageUploadMask.Builder(this)
.oval(true)
.direction(ShapeMask.Direction.LTR)
.maskColorInt(0x88000000)
.cornerRadius(12)
.textColorInt(Color.WHITE)
.textSize(12)
.margin(1)
.bind(imageView)
.build();
mask.setProgress(50);
