gpt4 book ai didi

android - 在 xml 布局中的 android 中创建自定义按钮

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

我正在尝试更改 android 默认按钮的样式。我在 res 文件夹中的 drawable 文件夹中创建了一个名为 custom_button.xml 的 xml 文件,并在 xml 布局文件中引用了它,但是当我运行应用程序时,按钮样式没有改变,而是我丢失了原始按钮的轮廓。

custom_button.xml

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

main.xml

 <TextView
android:id="@+id/textView1"
android:layout_width="85dp"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="#6600ff"
android:text="" />

<Button
android:id="@+id/button_getDraw"
style="?android:attr/buttonStyleSmall"
android:background="@drawable/custom_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_getDraw"
android:onClick="getLotteryDrawFromWebsite" />

<Button
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_check"
android:onClick="checkNumbers"
android:enabled="false" />

有什么问题吗?提前致谢..

最佳答案

将您的 custom_button xml 更改为此。

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

<solid android:color="#FF0000"/>

关于android - 在 xml 布局中的 android 中创建自定义按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18784686/

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