gpt4 book ai didi

Android 三角设计在 xml 中

转载 作者:搜寻专家 更新时间:2023-11-01 08:26:01 25 4
gpt4 key购买 nike

是否可以使用 shape 使用 xml 进行此类设计,如果可以,我该怎么做什么更有效地加载和存储图像为 png 或具有很多形状的可绘制图像? enter image description here

最佳答案

您可以使用 XML triangle.xml 绘制三角形

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<rotate
android:fromDegrees="-45"
android:pivotX="270%"
android:pivotY="70%"
android:toDegrees="45">
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="@android:color/transparent" />
<solid android:color="#ffffff" />
</shape>
</rotate>
</item>
</layer-list>

编辑:旋转形状

enter image description here

关于Android 三角设计在 xml 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45028156/

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