Android默认抽取超过自定义一个

时间:2017-03-13 18:22:38

标签: android android-drawable

我为Switch创建了自定义drawable,但是当我使用android:drawableRight="@drawable/switch_selector"将其应用于切换项时,它看起来像这样: enter image description here enter image description here

如何摆脱这些默认视图?谁能帮我?提前谢谢!

1 个答案:

答案 0 :(得分:1)

对于Android Switch,您需要为每个部分设置Drawables。第一部分是android:thumb,它是从左到右移动的Drawable。 enter image description here 第二部分是android:track,它是android:thumb滑动的Drawable。 enter image description here如果您不介意没有动画,可以设置android:thumbTint="@color/transparentandroid:trackTint="@color/transparent,这将删除默认视图。