我想在形状的背景中放置一个位图。我为此使用了layer-list:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/background" />
<item>
<shape
android:layout_height="wrap_content"
android:shape="rectangle">
<stroke
android:width="2dp"
android:color="#ff0000" />
<corners android:radius="10dp" />
</shape>
</item>
</layer-list>
正如您所见,位图的角可见。我怎样才能删除这些角落?