gpt4 book ai didi

android - 如何在android xml中绘制直角三角形

转载 作者:行者123 更新时间:2023-12-04 23:55:33 25 4
gpt4 key购买 nike

enter image description here

如何使用 xml 在 android 中创建形状?

最佳答案

已更新,现在是直角三角形
这肯定有效
1 enter image description here

  1. 此代码将生成如上图所示的左侧三角形。


<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<rotate
android:fromDegrees="52"
android:toDegrees="45"
android:pivotX="-45%"
android:pivotY="90%" >

<shape
android:shape="rectangle" >

<solid
android:color="@color/colorPrimary"/>
</shape>
</rotate>
</item>
</layer-list>

2 enter image description here

  1. 此代码将生成如上图所示的直角三角形。


<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<rotate
android:fromDegrees="-50"
android:toDegrees="45"
android:pivotX="140%"
android:pivotY="90%" >

<shape
android:shape="rectangle" >

<solid
android:color="@color/colorPrimary"/>
</shape>
</rotate>
</item>
</layer-list>

关于android - 如何在android xml中绘制直角三角形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45619791/

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