gpt4 book ai didi

安卓按钮边框颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:55:06 26 4
gpt4 key购买 nike

我正在使用以下 XML 制作 Android 按钮。

设计预览的输出如下所示。 enter image description here

但是,当我在设备上运行时,Samsung Duos。它显示完全不同。 enter image description here

如何设置边框。

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

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

</shape>

我在 XML 中也遇到错误,但它工作正常。当我将鼠标悬停在错误上时没有任何显示。

enter image description here

有人能帮忙吗?

最佳答案

添加<solid android:color="@android:color/transparent" />作为 shape 中的子元素元素

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="@android:color/transparent" />
<stroke
android:width="3dp"
android:color="#d78d79" />

</shape>

关于安卓按钮边框颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33847440/

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