dependencies {
implementation 'de.hdodenhof:circleimageview:3.1.0'
}
<de.hdodenhof.circleimageview.CircleImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/avatar"
app:civ_border_width="2dp"
app:civ_border_color="#FF000000" />
CircleImageView circleImageView = findViewById(R.id.circleImageView);
circleImageView.setImageResource(R.drawable.avatar);