2

我正在尝试更改 android 默认按钮的样式。我在 res 文件夹中的 drawable 文件夹中创建了一个 xml 文件,custom_button.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" /> 

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

4

2 回答 2

3

将您的 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"/>

于 2013-09-13T11:24:32.143 回答
0

尝试使用此链接....您还设置了按钮选择效果。

于 2013-09-13T11:24:36.787 回答