gpt4 book ai didi

android - 不带矢量的可绘制曲线 - xml Android

转载 作者:行者123 更新时间:2023-11-29 23:30:31 24 4
gpt4 key购买 nike

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

enter image description here

使用 Vector 很容易,但它会在 logcat 上显示“并发标记扫描 GC”,这会导致设备变慢。

谢谢。

最佳答案

试试这个

<?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

关于android - 不带矢量的可绘制曲线 - xml Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52775409/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com