我指的是ICS手机上默认的Android设置应用中看到的蓝色ON / OFF样式。它也可以在这里看到:http://android-developers.blogspot.com/2012/02/android-design-v2-now-with-stencils.html 我想将它们放在Preference屏幕中,我是否必须使用自定义首选项小部件?
此外,在操作栏中放置切换按钮是否容易?这似乎是可能的,因为它是在ICS的默认Android设置中为Wifi设置完成的,但它可能是一个自定义菜单项?
非常感谢任何帮助。
答案 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" />