1multiImageView.setShape(MultiImageView.Shape.RECTANGLE);//Rectangle with round corners
2multiImageView.setShape(MultiImageView.Shape.CIRCLE);//Circle
3multiImageView.setShape(MultiImageView.Shape.NONE);//Without shape
1final MultiImageView multiImageView = (MultiImageView) findViewById(R.id.iv);
1multiImageView.addImage(BitmapFactory.decodeResource(getResources(), R.drawable.avatar1));
1<com.stfalcon.multiimageview.MultiImageView
2 android:id="@+id/iv"
3 android:layout_width="100dp"
4 android:layout_height="100dp"/>