Answers for "circularimageview android github"

1

circleimageview github

//Build.Gradle (app level)
  
dependencies {
    ...
    implementation 'de.hdodenhof:circleimageview:3.1.0'
    //make sure use latest version of this. currently latest version is 3.1.0
    //in 25-05-2021;
    
    //Edited
    //still no changes in version -today date - 12.08.2021
}

Usage

<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-25-2021

Browse Popular Code Answers by Language