在我的可变形图像视图上的边缘变圆后,我仍然在变圆的边缘周围得到黑色边缘
下面是我的xml:
<com.google.android.material.imageview.ShapeableImageView
android:id="@+id/shapeableImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/background"
android:scaleType="fitXY"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:shapeAppearance="@style/article_shape" />
2条答案
按热度按时间axzmvihb1#
app:shapeAppearanceOverlay="@style/article_shape”实际上可以工作。当你在模拟器或设备上运行时,黑边不会反射。谢谢
ctehm74n2#
检查
hardwareAccelerated
设置的Application
部分中的Androidanifest.xml文件: