情况就是这样:
myTheme.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="myTheme" parent="android:Theme.Translucent">
<item name="android:windowBackground">@color/windowBackground</item>
<item name="android:windowNoTitle">true</item>
<item name="android:colorForeground">#FFFFFF</item>
<item name="android:buttonStyleToggle">@style/ToggleButton</item>
</style>
<style name="ToggleButton" parent="@android:style/Widget">
<item name="android:background">@drawable/toggle_list</item>
<item name="android:textOn">""</item>
<item name="android:textOff">""</item>
<item name="android:disabledAlpha">?android:attr/disabledAlpha</item>
</style>
</resources>
toggle_list.xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+android:id/background" android:drawable="@android:color/transparent" />
<item android:id="@+android:id/toggle" android:drawable="@drawable/toggle_selector" />
</layer-list>
toggle_selector.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_checked="false" android:drawable="@drawable/toggle_off"/>
<item android:state_checked="true" android:drawable="@drawable/toggle_on"/>
</selector>
onpckedChanged上的我已插入输出以查看它的作用 这里有问题,如果我注释掉行
<item name="android:buttonStyleToggle">@style/ToggleButton</item>
我看到标准按钮,我的听众被正确调用,
在那条线上,我正确地看到了我的按钮,
但听众不再被召唤,
当我按下ToggleButton时图像不会改变
有人可以帮帮我吗?
感谢。