Answers for "android studio circle imageview"

8

circle imageview dependency in android

implementation 'de.hdodenhof:circleimageview:3.1.0'
Posted by: Guest on May-08-2020
1

circular imageview android

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="@drawable/profile"
    app:civ_border_width="2dp"
    app:civ_border_color="#FF000000"/>
Posted by: Guest on May-13-2021
1

android studio picasso circle image

implementation 'jp.wasabeef:picasso-transformations:2.2.1'

Picasso.with(context)
       .load(url)
       .transform(new CropCircleTransformation())
       .into(imageview);
Posted by: Guest on April-23-2021
0

how to make circle image with cardview in android

To get a perfect circle shape using a card view, corner radius should be 1/2 of width or height
Posted by: Guest on October-02-2021

Code answers related to "android studio circle imageview"

Browse Popular Code Answers by Language