I'm trying to make an image circular in the simplest way. But it just won't work. I've also tried implementing "hdodenhof/CircleImageView" and it was of no use. Is there any alternate reliable way of doing this?
<com.google.android.material.card.MaterialCardView
android:layout_width="200dp"
android:layout_height="200dp"
app:cardCornerRadius="100dp">
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/spongebob"/>
</com.google.android.material.card.MaterialCardView>
try to use
CircularImageView
library:and in build.gradle :