按下时更改按钮中的图像

时间:2011-03-11 03:50:53

标签: java android xml

我有这个代码

<?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
     <item android:state_pressed="true"
           android:drawable="@drawable/fundo" /> <!-- pressed -->
     <item android:drawable="@drawable/fundo2" /> <!-- default -->
 </selector>

在其他档案中

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >


    <Button android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:background="@drawable/btn"
         />

</FrameLayout>

并在班级

 @Override
    public boolean onTouch(View v, MotionEvent event) {

        switch (event.getAction()) {

        case MotionEvent.ACTION_DOWN:
            mp.setLooping(true);
            mp.start();
            return true;

        case MotionEvent.ACTION_UP:
            mp.pause();
            return true;

        }

        return true;

    }

我不知道为什么,当按下按钮时图像不会改变,原因是什么?

谢谢!

3 个答案:

答案 0 :(得分:1)

在ur xml里面,对于按钮背景,给出了你的选择器xml文件名。

<Button android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:background="@drawable/ur state change xml file name"
/>

答案 1 :(得分:1)

而不是android:background =“@ drawable / btn”请使用android:src =“@ drawable / btn”。

它对我有用。

答案 2 :(得分:0)

你可以使用setBackgroundResource(ResId)来改变按钮你可以在Button的OnClick()方法中写这个。