我正在关注romain guy的圆形图像教程,
http://www.curious-creature.com/2012/12/11/android-recipe-1-image-with-rounded-corners/
我将drawable提取到类RoundedDrawable
但是当我尝试将它用于位图时,它总是会画出白色。
我该如何解决这个问题?
答案 0 :(得分:0)
这是一种简单的方法
在build.gradle compile 'de.hdodenhof:circleimageview:2.1.0'
上添加此内容
并在您的xml添加
<de.hdodenhof.circleimageview.CircleImageView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/profile_image"
android:layout_width="your size"
android:layout_height="your size"
android:src="@drawable/profile"
app:civ_border_width="2dp"
app:civ_border_color="#FF000000"/>