android 圆角头像
2017-02-15 本文已影响0人
爱吃猫的咸鱼

用 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"/>
