gpt4 book ai didi

具有不同半径值的布局中的Android圆角

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:29:56 27 4
gpt4 key购买 nike

我正在尝试制作一个具有透明背景和具有一些基本信息和圆角的坚实前景的 Intent 。目前,如果所有角的半径都相同,我可以使用带圆角的形状

<corners android:radius="20dp" />

但是如果我试着让底部像这样变圆:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="#cccccc" />
<corners android:radius="20dp" android:topLeftRadius="0dp"
android:topRightRadius="0dp"
android:bottomLeftRadius="20dp"
android:bottomRightRadius="20dp" />
</shape>

或任何类似的东西,然后我在我的布局中得到一个错误

layout.xml: java.lang.UnsupportedOperationException

有什么建议吗?

最佳答案

尝试删除 android:radius=20dp 并只使用单独的半径。此外,您可能应该切换到 dip 而不是 dp

关于具有不同半径值的布局中的Android圆角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7487408/

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