gpt4 book ai didi

android - 如何创建这个可绘制的形状

转载 作者:行者123 更新时间:2023-11-29 19:45:27 26 4
gpt4 key购买 nike

我想为这个形状创建可绘制的 xml,

enter image description here

最佳答案

使用此布局并保存在可绘制文件夹中.....

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item>
<shape android:shape="rectangle">
<size
android:width="200dp"
android:height="50dp" />
<solid android:color="#ef45d1" />
<corners android:topRightRadius="20dp" />
</shape>
</item>


<item
android:bottom="0dp"
android:right="165dp"
android:top="0dp">

<rotate
android:fromDegrees="45"
android:pivotX="0%"
android:pivotY="0%"
android:toDegrees="45">

<shape android:shape="rectangle">
<solid android:color="#ffffff" />


</shape>
</rotate>

</item>

</layer-list>

并在布局 View 中设置为背景....

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:background="@drawable/newrecatngle"/>

注意:-将宽度和高度设置为 wrap_content.....

Image

享受编码......

关于android - 如何创建这个可绘制的形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37827506/

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