0

我不想在 android 中自定义我的开关。问题是默认按钮覆盖了我自己的drawable。

我做了什么:

  1. 创建我自己的图形(2 个图形)
  2. 在drawable文件夹中创建一个xml,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/switch_female" android:state_checked="false"/>
    <item android:drawable="@drawable/switch_male" android:state_checked="true"/>
</selector>
  1. 我的开关定义如下所示:
<Switch
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:textOff=""
            android:textOn=""
            android:id="@+id/genderSwitchOne"
            android:layout_below="@+id/txtViewPersonGender"
            android:layout_centerVertical="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_marginTop="25dp"
            android:background="@drawable/gender_switch"/>

但我得到的是:

我的开关按钮

可以删除默认按钮(通过女性的“em”)?

提前致谢。

PS:对不起,但我不能在没有块引用的情况下粘贴 android xml。

4

1 回答 1

1

android:thumb="@null"SwitchXML 元素上设置。这将从显示中删除可绘制的拇指。

编辑:由于上面产生了一个 NPE,android:thumb="@android:color/transparent"应该做的伎俩,因为这将作为一个实际的ColorDrawable.

于 2015-02-01T13:07:07.030 回答