没有向量的曲线可绘制-XML Android

时间:2018-10-12 08:31:32

标签: android xml android-xml android-drawable xml-drawable

我正试图在xml drawable上绘制它:

enter image description here

使用Vector很容易,但是它在logcat上显示“并发标记清除GC”,这会导致设备运行缓慢。

谢谢。

1 个答案:

答案 0 :(得分:0)

尝试这种方式

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromDegrees="180"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toDegrees="180">
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item
            android:left="-100dp"
            android:right="-100dp"
            android:top="-80dp">


            <shape android:shape="oval">
                <size android:height="20dp" />
                <gradient
                    android:angle="0"
                    android:centerColor="@color/colorAccent"
                    android:endColor="@color/colorPrimary"
                    android:startColor="@color/colorPrimary"
                    android:type="linear" />
            </shape>


        </item>

        <item>
            <shape android:shape="rectangle" />
        </item>

    </layer-list>

</rotate>

输出

enter image description here