Answers for "how to make circle image with cardview in android"

1

android studio picasso circle image

implementation 'jp.wasabeef:picasso-transformations:2.2.1'

Picasso.with(context)
       .load(url)
       .transform(new CropCircleTransformation())
       .into(imageview);
Posted by: Guest on April-23-2021
0

how to make circle image with cardview in android

To get a perfect circle shape using a card view, corner radius should be 1/2 of width or height
Posted by: Guest on October-02-2021

Code answers related to "how to make circle image with cardview in android"

Browse Popular Code Answers by Language