Android利用CircleImageView实现圆形头像效果整理

一、参考内容

Github源码

根据上面大神的修改。但是使用方法已经变了。最先版本使用是
并且在build.gradle中添加依赖:

  compile 'de.hdodenhof:circleimageview:2.1.0'
.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"/>

源码不断在更新可以,根据Github上的源码修改。

二、可能遇到androidStudio升级到2.3之后新建Activity布局变成了约束(ConstraintLayout)布局。

改变布局的方法

自己整合的源码

你可能感兴趣的:(Android)