如何通过使用图层列表以编程方式创建旋转形状效果?

时间:2019-05-02 06:38:13

标签: android rotation draw shapes layer-list

以编程方式创建此形状

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:id="@+id/carrot_shape_top">
            <rotate
                android:fromDegrees="45"
                android:pivotX="-35%"
                android:pivotY="95%"
                android:toDegrees="45">
                <shape android:shape="rectangle">
                    <solid android:color="@color/colorPrimaryDark" />
                </shape>
            </rotate>
        </item>
    </layer-list>

enter image description here

0 个答案:

没有答案