gpt4 book ai didi

android - 如何在android中使用xml绘制形状

转载 作者:搜寻专家 更新时间:2023-11-01 07:51:12 24 4
gpt4 key购买 nike

需要使用xml绘制如下圆形,红色形状。

enter image description here

是否可以仅使用 xml 绘制此内容?

最佳答案

您可以使用以下 XML 代码制作圆圈:

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
<solid android:color="#c4bfbf"/>
</shape>

您可以将上面的圆圈添加为 View 的背景,并且在该 View 之上您可以保留另一个 View ,它可以是垂直居中的,它的 XML 将是:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#FF0000" />
<padding android:bottom="1dp" android:left="10dp" android:right="10dp" android:top="1dp"/>
<corners
android:bottomRightRadius="20dp"
android:bottomLeftRadius="20dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp"/>
</shape>

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

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