如何使用hdodenhof:circleimageview创建圆(Android Studio)

时间:2018-10-04 15:37:04

标签: android-studio layout kotlin geometry

我已经使用了库“实现'de.hdodenhof:circleimageview:2.2.0', replacing the image View imageView <de.hdodenhof.circleimageview.CircleImageView xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/iconHolder1" android:layout_width="70dp" android:layout_height="0dp" android:background="@color/chapter1" android:elevation="3dp" android:scaleType="centerCrop" android:src="@drawable/icon1" app:layout_constraintBottom_toBottomOf="@+id/chapter1" app:layout_constraintStart_toStartOf="@+id/chapter1" app:layout_constraintTop_toTopOf="@+id/chapter1" app:civ_border_width="1dp" app:civ_border_color="@color/colorPrimary" /> xml`与此代码:

course

但是它不会消除角落。它只是在图像周围创建一个圆圈,如下所示:enter image description here

如何删除圆形边框之外的所有颜色?有没有人使用过这个库或类似的库,或者知道更好的方法来解决这个问题?

3 个答案:

答案 0 :(得分:1)

我正在使用该库,但没有问题:

implementation 'com.mikhaellopez:circularimageview:3.2.0'

您可以在此处link

查看文档

答案 1 :(得分:0)

对于任何遇到此问题的人,请尝试在对我有用的kotlin / java文件中将clipToOutline设置为true。

在这种情况下:

iconHolder1.clipToOutline = true

答案 2 :(得分:0)

 implementation 'de.hdodenhof:circleimageview:1.3.0'  

<de.hdodenhof.circleimageview.CircleImageView
         android:id="@+id/profilePic"
         android:layout_width="@dimen/sdp105"
         android:layout_height="@dimen/sdp105"
         android:src="@drawable/ic_profile"
         android:layout_marginBottom="@dimen/sdp7"
         android:layout_marginTop="@dimen/sdp10"
         ads:border_color="@color/colorPrimary"
         ads:border_width="@dimen/sdp1"/>    

enter image description here enter image description here