Android如何获取checkBoxPreference的preferenceScreen

时间:2015-03-11 09:47:56

标签: android preference preferencescreen android-settings checkboxpreference

我有一个首选xml文件,在某些时候它看起来像这样:

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:title="Hello there">
<!-- Profile ** -->
<PreferenceScreen
    android:key="profile"
    android:summary="Let app access my profile info such as name, picture and other account information."
    android:title="User Profile">
    <CheckBoxPreference
        android:defaultValue="true"
        android:key="pref_profile"
        android:summary="Let app access my profile such as name, picture and other account information."
        android:title="My Profile" />

如你所见,我有2个preferenceScreen。我想获取CheckBoxPreference的preferenceScreen(所以首选项屏幕带有key:profile)。当我使用时:

PreferenceScreen prefScreen = getPreferenceScreen();

我得到一个标题:你好。如何获得此checkBoxPreference的直接父(第一个父)屏幕?我想得到它所以我可以禁用或启用它的视图。

任何想法?谢谢!!

0 个答案:

没有答案