在Api 21中无法正确渲染图层列表可绘制

时间:2018-09-09 10:00:55

标签: android xml drawable layer-list

我有一个可绘制的矩形图层列表。我遇到一个问题,在api 28和api 21中,Drawable的显示方式有所不同。这是我的代码。

LayerListDrawable:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:gravity="right">
        <shape android:shape="rectangle">
            <size android:width="2dp" />
            <solid android:color="@color/colorAccent" />
        </shape>
    </item>
</layer-list>

这就是它在Api 21中的呈现方式:-

enter image description here

这是在Api 28中呈现的方式:-

enter image description here

0 个答案:

没有答案