I am using 'Coil' to have circular imageview. I want to draw a circular border to this circular imageview. How to do it with using Coil?
This is where I load the image:
binding.imageviewFaceDetectionSelfieCircle.load(R.drawable.ic_avatar) {
transformations(CircleCropTransformation())
}
This is where the image^s XML:
<ImageView
android:id="@+id/imageview_face_detection_selfie_circle"
android:layout_width="80dp"
android:layout_height="80dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toEndOf="@id/imageview_face_detection_id_card"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginTop="70dp"/>
There is no such option in
Coil
. To draw border you can useShapableImageView
from"com.google.android.material:material:1.2.0"