我已经使用了库“实现'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
但是它不会消除角落。它只是在图像周围创建一个圆圈,如下所示:
如何删除圆形边框之外的所有颜色?有没有人使用过这个库或类似的库,或者知道更好的方法来解决这个问题?
答案 0 :(得分:1)
答案 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"/>