android multiimage view

Solutions on MaxInterview for android multiimage view by the best coders in the world

showing results for - "android multiimage view"
Eric
09 Feb 2018
1multiImageView.setShape(MultiImageView.Shape.RECTANGLE);//Rectangle with round corners
2multiImageView.setShape(MultiImageView.Shape.CIRCLE);//Circle
3multiImageView.setShape(MultiImageView.Shape.NONE);//Without shape
Daniel
24 Feb 2019
1final MultiImageView multiImageView = (MultiImageView) findViewById(R.id.iv);
Max
18 Jul 2016
1multiImageView.addImage(BitmapFactory.decodeResource(getResources(), R.drawable.avatar1));
Tom
05 Oct 2018
1<com.stfalcon.multiimageview.MultiImageView
2        android:id="@+id/iv"
3        android:layout_width="100dp"
4        android:layout_height="100dp"/>
Tracey
08 Apr 2016
1compile 'com.github.stfalcon:multiimageview:0.1'