gpt4 book ai didi

android - 圆形父边框不适用于 child

转载 作者:行者123 更新时间:2023-12-04 23:50:15 26 4
gpt4 key购买 nike

当我使用这个 xml 布局制作第一个带有圆形边框的布局时

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

<stroke android:width="3dp"
android:color="#ffffff"
/>

<padding android:left="1dp"
android:top="1dp"
android:right="1dp"
android:bottom="1dp"
/>

<corners android:bottomRightRadius="15dp" android:bottomLeftRadius="15dp"
android:topLeftRadius="15dp" android:topRightRadius="15dp"/>
</shape>

它使我的布局边框变圆,但 child 在圆角边框上
看图片

父边框是圆形的,但 child 的边框是圆形的,我该如何解决这个问题?

enter image description here

另一个图像

enter image description here

最佳答案

实际上你并没有把它变成圆形,你只是为你的 View 设置了一个圆形的背景,布局仍然是一个矩形。

您可以将相同的背景设置为 subview 或使用此 post 中提到的剪辑。 .

关于android - 圆形父边框不适用于 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38424888/

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