Android – 使用xml drawable制作支票图标

前端之家收集整理的这篇文章主要介绍了Android – 使用xml drawable制作支票图标前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何使用xml drawable制作这个形状?一直争吵已经很久了,无法完成.

解决方法

这是您可以改进的模板:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:width="30dp"
        android:height="4dp"
        android:top="20dp">
        <rotate
            android:fromDegrees="45">
            <shape android:shape="rectangle">
                <solid android:color="@android:color/holo_orange_dark"/>
            </shape>
        </rotate>
    </item>

    <item
        android:width="40dp"
        android:height="4dp"
        android:top="15dp"
        android:left="18dp">
        <rotate
            android:fromDegrees="-45">
            <shape android:shape="rectangle">
                <solid android:color="@android:color/holo_orange_dark"/>
            </shape>
        </rotate>
    </item>

    <item
        android:width="50dp"
        android:height="50dp">
        <shape android:shape="rectangle">
            <solid android:color="@android:color/transparent"/>
        </shape>
    </item>
</layer-list>
原文链接:https://www.f2er.com/android/312225.html

猜你在找的Android相关文章