Android中删除Preference详解
Android的设置界面实现比较简单,有时甚至只需要使用一个简单的xml文件即可.声明简单,但是如何从PreferenceScreen或者PreferenceCategory中删除一个Preference会简单么.为什么有些人写的就无法删除成功呢?本文将从Android源码实现来分析一下.
声明文件
<?xmlversion="1.0"encoding="utf-8"?> <PreferenceScreenxmlns:android="http://schemas.android.com/apk/res/android" android:key="root">
<PreferenceCategory android:key="theme" android:title="Theme" android:summary="ThemeSettings" > <CheckBoxPreference android:key="holo_theme" android:title="HoloTheme" android:summary="UseHoloTheme" /> </PreferenceCategory> <CheckBoxPreference android:key="rmcache" android:title="AutoClearCache" android:summary="EnableAutoClearCache" /> </PreferenceScreen>