KitKat上没有应用android开关样式(4.4.2)

时间:2014-04-04 08:24:02

标签: android customization uiswitch

我在项目上应用了一些自定义样式。当我在不同的设备上测试我的应用程序时,我意识到除了Kitkat(4.4.2)上的Switch样式之外,所有样式都被正确应用。是否存在兼容性问题,或者我应该使用其他方法。我花了一些时间搜索类似的问题,但找不到。 4.2和4.3设备没有问题,但在4.4上没有应用开关样式。

这是我的风格:

<style name="switchStyle">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">wrap_content</item> 
    <item name="android:layout_marginTop">0dp</item>
    <item name="android:layout_marginBottom">0dp</item>
    <item name="android:layout_marginLeft">20dp</item>
    <item name="android:layout_marginRight">20dp</item> 
    <item name="android:thumb">@drawable/ab_bottom_solid_btom</item>
    <item name="android:track">@drawable/switch_bg</item>
    <item name="android:thumbTextPadding">30dp</item>
    <item name="android:switchPadding">30dp</item>
</style>

这是开关

  <Switch
     android:id="@+id/filter_switch"
     style="@style/switchStyle"
     android:layout_marginTop="20dp"
     android:checked="true"
     android:text=""
     android:textOff="On"
     android:textOn="Off" />

有更好的方法来自定义切换?这个问题真的与os版本有关吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

我认为这是关于操作系统的版本,但我意识到我忘了为特定的屏幕尺寸添加相关的背景图像。因为我只忘了一个屏幕尺寸,所以其他设备的样式都适用。但我想知道为什么它没有显示任何错误或警告。打开相关屏幕时没有错误或警告。它分配了布局位置但没有显示开关。