我指的是在ICS手机上的默认Android设置应用程序中看到的蓝色开/关样式。也可以在这里看到:http://android-developers.blogspot.com/2012/02/android-design-v2-now-with-stencils.html
我想把它们放在首选项屏幕上,我需要使用自定义首选项小部件吗?
此外,在操作栏中设置切换按钮是否容易?这似乎是可能的,因为它是为wifi设置在默认的安卓设置集成电路,但它可能是一个自定义菜单项?
非常感谢您的帮助。

最佳答案

简单到:
我的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" />

07-24 09:49
查看更多