首选项中的开/关切换按钮& Action Bar - 冰淇淋三明治风格

时间:2012-04-02 02:35:04

标签: android android-4.0-ice-cream-sandwich android-preferences android-actionbar togglebutton

我指的是ICS手机上默认的Android设置应用中看到的蓝色ON / OFF样式。它也可以在这里看到:http://android-developers.blogspot.com/2012/02/android-design-v2-now-with-stencils.html 我想将它们放在Preference屏幕中,我是否必须使用自定义首选项小部件?

此外,在操作栏中放置切换按钮是否容易?这似乎是可能的,因为它是在ICS的默认Android设置中为Wifi设置完成的,但它可能是一个自定义菜单项?

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:32)

一样简单:
我的xml-v14/preferences.xml

<SwitchPreference
    android:key="@string/feature_id"
    android:title="@string/feature_title" />

兼容性:
我的xml/preferences.xml

<CheckBoxPreference 
    android:key="@string/feature_id"
    android:title="@string/feature_title" />