在xml android上剪辑位图的角落

时间:2018-02-14 10:00:53

标签: android xml bitmap shape

我想在形状的背景中放置一个位图。我为此使用了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>

结果是:  Result

正如您所见,位图的角可见。我怎样才能删除这些角落?

0 个答案:

没有答案