1//Build.Gradle (app level)
2
3dependencies {
4 ...
5 implementation 'de.hdodenhof:circleimageview:3.1.0'
6 //make sure use latest version of this. currently latest version is 3.1.0
7 //in 25-05-2021;
8
9 //Edited
10 //still no changes in version -today date - 12.08.2021
11}
12
13Usage
14
15<de.hdodenhof.circleimageview.CircleImageView
16 xmlns:app="http://schemas.android.com/apk/res-auto"
17 android:id="@+id/profile_image"
18 android:layout_width="96dp"
19 android:layout_height="96dp"
20 android:src="@drawable/profile"
21 app:civ_border_width="2dp"
22 app:civ_border_color="#FF000000"/>
23
24