gpt4 book ai didi

android 圆角 textview 在角落里有完美的圆形

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:58:24 51 4
gpt4 key购买 nike

如何显示带有圆角矩形的 TextView ,如原始图像所示 enter image description here

在上面(原始)图片中,按钮 2 的左右圆角形状正确,但在我的代码中,左右圆角形状不正确

enter image description here

在第二张图片中,我需要像第一张图片一样做更多的圆角。我该如何处理以下可绘制对象?

可绘制代码(green_bg.xml)

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#19D8C8" />
<corners android:radius="3dip" />
<stroke
android:width="10dp"
android:color="#19D8C8" />
</shape>

activity_main.xml

.......
<TextView
android:id="@+id/qmap_2"
android:layout_width="35dp"
android:layout_height="24dp"
android:layout_gravity="center_vertical"
android:gravity="center"
android:text="2"
android:textStyle="bold"
android:textColor="@color/no_color" />
......

最佳答案

在drawable中创建文件round.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#176d7a" />
<corners android:radius="50dp" />
</shape>

现在像这样设置textview的背景

<TextView
android:id="@+id/qmap_2"
android:layout_width="35dp"
android:layout_height="24dp"
android:layout_gravity="center_vertical"
android:gravity="center"
android:text="2"
android:textStyle="bold"
android:background="@drawable/round"
android:textColor="@color/no_color" />

它应该工作

关于android 圆角 textview 在角落里有完美的圆形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34441442/

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