From 498e2cd6e2506ea770b12ff2248f403308976002 Mon Sep 17 00:00:00 2001 From: martipello Date: Sat, 22 Feb 2020 15:14:20 +0000 Subject: [PATCH 1/2] updated read me --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/README.md b/README.md index e91968f..de9e8bf 100644 --- a/README.md +++ b/README.md @@ -1 +1,30 @@ I forked this library to carry on it's development, I've extended the examples to include a recycler view example, the shape and corner radius can now be set from xml, + + +to create the image view in xml + + + +![Image description](https://github.com/martipello/MultiImageView/blob/master/sample/src/main/res/drawable/Screenshot_1582383274.png) + + +![Image description](https://github.com/martipello/MultiImageView/blob/master/sample/src/main/res/drawable/Screenshot_1582383283.png) + + +to add an image use + + multiImageView.addImage(BitmapFactory.decodeResource(getResources(), R.drawable.avatar1)); + +to clear images use + + multiImageView.clear(); + +the corner radius only applys to the rectangle shape other wise it will be ignored you can set this in xml or programmatically + +![Image description](https://github.com/martipello/MultiImageView/blob/master/sample/src/main/res/drawable/Screenshot_1582383289.png) + From 3c977932b12abfef681f15f88b859be5bb887cfd Mon Sep 17 00:00:00 2001 From: martipello Date: Sat, 22 Feb 2020 15:14:32 +0000 Subject: [PATCH 2/2] updated read me