我按照这个示例将一些自定义主题应用于我的切换按钮,但是当我运行我的应用程序时,我看到了通用的 android 切换图标 - 我想我在这里或那里缺少一个设置,并且可以使用一组额外的眼睛。
我有一个用于的布局ListView
,我正在尝试将自定义可绘制对象用于选中/未选中状态,默认情况下每个切换状态都设置为 CHECKED:
<ToggleButton
android:id="@+id/profile_item_value_text"
style="@style/ProfileTagTheme"
android:layout_width="0px"
android:layout_weight="1"
android:layout_height="wrap_content"
android:textSize="16dp"
android:textColor="@color/black"
android:layout_gravity="center"
android:gravity="center_vertical|center_horizontal"
android:checked="true" />
这是我的styles
文件中的内容ProfileTagTheme
:
<style name="Widget.Button.Toggle" parent="android:Widget">
<item name="android:background">@drawable/profile_btn_toggle_bg</item>
<item name="android:disabledAlpha">@android:attr/disabledAlpha</item>
</style>
<style name="ProfileTagTheme" parent="android:Theme.Black">
<item name="android:buttonStyleToggle">@style/Widget.Button.Toggle</item>
</style>
反过来,profile_btn_toggle_bg.xml
生活在我的主drawable
目录中:
<?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/profile_btn_toggle"/>
</layer-list>
其中引用profile_btn_toggle
,就在它旁边:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:drawable="@drawable/tag_active" /> <!-- pressed -->
<item android:drawable="@drawable/tag" /> <!-- default/unchecked -->
</selector>
我已经验证了自定义图像存在于 drawables 目录中,所以显然要么我误解了样式级联的方式,要么我在这种风格的疯狂中缺少参考。