我有这个PNG图像上面(我从Figma导出)。我如何使用drawable xml重新创建它?我想尝试使用layer-list,但我不知道如何做。我需要使用drawable,因为我需要设置自定义颜色给它。
下面是我的可绘制代码:
background.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/background_color"/>
<item>
<shape android:shape="rectangle">
<!-- I'm suppose I need to add some code here but I'm not sure what it is -->
</shape>
</item>
</layer-list>
背景颜色.xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<gradient
android:angle="90"
android:endColor="@color/primary"
android:startColor="@color/secondary" />
</shape>
colors.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="primary">#001A6E</color>
<color name="secondary">#0070C0</color>
...
</resources>
有没有其他更好的方法来重新创建这个PNG图像?
2条答案
按热度按时间6xfqseft1#
希望它有帮助...我不使用导出的图像在这里,因为我得到了从您的资源渐变颜色。
您可以根据需要调整
bottomLeftRadius
或bottomRightRadius
。它的高级解决方案用于此目的。flmtquvp2#
我希望它能帮助你创建三个不同的可绘制的xml文件,以实现你想要的。我也使用了你的颜色资源。
image.xml
image_background_white.xml
image_with_roundcorner.xml
在你的主xml中使用上面的三个drawable,如下所示: