android 圆角后可变形图像视图上的黑边

mlmc2os5  于 2022-11-20  发布在  Android
关注(0)|答案(2)|浏览(282)

在我的可变形图像视图上的边缘变圆后,我仍然在变圆的边缘周围得到黑色边缘

下面是我的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" />
axzmvihb

axzmvihb1#

app:shapeAppearanceOverlay="@style/article_shape”实际上可以工作。当你在模拟器或设备上运行时,黑边不会反射。谢谢

ctehm74n

ctehm74n2#

检查hardwareAccelerated设置的Application部分中的Androidanifest.xml文件:

android:hardwareaccelerated="true"

相关问题