CircleImageView

GitHub - hdodenhof/CircleImageView: A circular ImageView for Android

의존성 추가

dependencies {
    ...
    implementation 'de.hdodenhof:circleimageview:3.1.0'
}

사용방법

<de.hdodenhof.circleimageview.CircleImageView
    xmlns:app="<http://schemas.android.com/apk/res-auto>"
    android:id="@+id/profile_image"
    android:layout_width="96dp"
    android:layout_height="96dp"
    android:src="해당 이미지 넣어줭"
    app:civ_border_width="2dp"
    app:civ_border_color="#FF000000"/>

RoundedImageView

GitHub - vinc3m1/RoundedImageView: A fast ImageView that supports rounded corners, ovals, and circles.