android 圆角头像

android 圆角头像_第1张图片

用 fresco 实现这个很方便 

首先在build.gradle里面添加依赖   compile'com.facebook.fresco:fresco:1.0.0'


然后在xml里面:

android:id="@+id/user_avatar"

android:layout_gravity="center_horizontal"

android:layout_marginTop="30dp"

android:layout_height="154px"

android:layout_width="154px"

fresco:roundAsCircle="false"

fresco:roundedCornerRadius="10dp"

fresco:placeholderImage="@drawable/head"

fresco:actualImageScaleType="focusCrop"

fresco:failureImage="@drawable/head"/>

android 圆角头像_第2张图片

你可能感兴趣的:(android 圆角头像)