按下按钮时图像不变

时间:2014-10-08 13:03:53

标签: android android-button

我的应用程序我有很多按钮,我想要的是当用户选择特定按钮时,它的背景应该改变,以便用户知道选择了哪个按钮。为此,我使用了选择器。但是当我运行我的应用程序时点击按钮上的事件工作正常但按钮图像没有改变

选择

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/people_1" android:state_selected="true"></item>
    <item android:drawable="@drawable/people_1" android:state_active="true"></item>
    <item android:drawable="@drawable/places_1" android:state_focused="true"></item>
    <item android:drawable="@drawable/hotel_icon"></item>

</selector>

我使用选择器的Xml

<Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/hotel"
                android:layout_weight="1"
                android:id="@+id/home" />

1 个答案:

答案 0 :(得分:1)

我解决了,唯一缺少的是

<item android:drawable="@drawable/selected" android:state_pressed="true" />