0
我下面從羅曼蓋伊四捨五入的圖像教程,四捨五入的圖像繪製對象只繪製白色
http://www.curious-creature.com/2012/12/11/android-recipe-1-image-with-rounded-corners/
我提取的繪製一類RoundedDrawable
但是當我嘗試並使用它的位圖,它會總是塗成白色。
我該如何解決這個問題?
我下面從羅曼蓋伊四捨五入的圖像教程,四捨五入的圖像繪製對象只繪製白色
http://www.curious-creature.com/2012/12/11/android-recipe-1-image-with-rounded-corners/
我提取的繪製一類RoundedDrawable
但是當我嘗試並使用它的位圖,它會總是塗成白色。
我該如何解決這個問題?
這裏有一個簡單的方法
添加此對您的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"/>
有更好的方法來創建圓形圖片,你不應該使用這種方法了。 https://stackoverflow.com/a/26471808/599346 – tyczj
@tyczj該方法不適用於我。甚至沒有加載位圖= / – 1tSurge