5

我搜索了这个论坛的所有内容,但没有得到我真正需要的东西。我在 Preference 中需要一个自定义 DialogPreference,但 DialogPreference 不应该有我讨厌的蓝条标头,而且我已经为其他活动准备了一个活动标头模板 xml 文件,可以用作自定义活动标头。所以我想使用它在这个对话框上。另外我想要自定义首选项文件名,但这里的问题是它创建了两个首选项文件名,一个用于首选项,另一个用于 DialogPreference

但我在这里找到了类似的内容使用带有 2 个用户输入字段的 EditTextPreference

    <com.yourdomain.YourDialogPreference
        android:title="Title"
        android:summary="Summary"
        android:key="dialog_preference"/>

到目前为止,我已经做到了这一点。DialogPreference 打开得很好,但是我如何将我的标题模板附加到这个自定义 DialogPreference

4

1 回答 1

4

我认清了自己。干得好。

第一个在 DialogPreference XML 中包含标题模板的以下行

<include layout="@layout/activity_header_template" />

并像普通的自定义对话框模板一样准备自己的自定义对话框布局。真正需要的是,我想自定义 DialogPreference,我想要密码 1 和密码 2 的两个输入。(只是为了确认密码)

这是我的 ListPreference XML 代码

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <PreferenceCategory android:title="@string/preference_header_encryption">

        <CheckBoxPreference
            android:key="prefkey_use_passcode"
            android:title="@string/preference_name_set_passcode"
            android:summary="@string/preference_summary_set_passcode" />

        <!-- This is how you need to attach CustomDialogPrefernce, by using the class name -->
        <!-- Please ignore title here. Title will come from DialogPreference Constructor --> 
        <com.nerds.notes.SettPassword
            android:key="prefkey_set_passcode"
            android:summary="@string/preference_app_protection"
            android:dialogMessage="@string/action_delete"
            android:positiveButtonText="@string/passcode_ok_button_text"
            android:negativeButtonText="@string/passcode_cancel_button_text"
            android:dependency="prefkey_use_passcode" />

        <CheckBoxPreference
            android:key="prefkey_app_protection"
            android:title="@string/preference_app_protection"
            android:summary="@string/preference_summary_app_protection"
            android:dependency="prefkey_use_passcode" />

    </PreferenceCategory>

</PreferenceScreen>

以下几行非常重要,DialogPreference 构造函数

public SettPassword(Context context, AttributeSet attrs) {
    super(context, attrs);
    setPersistent(false);
    setTitle(R.string.preference_name_set_passcode); // This will override ListPreference Title
    setDialogLayoutResource(R.layout.passcode_set_dialog_template);
}

以下行应在 ListPreference OnCreate 方法中编码以具有自定义首选项文件名

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    PreferenceManager manager = getPreferenceManager();
    manager.setSharedPreferencesName("Your Preference File Name");
    manager.setSharedPreferencesMode(MODE_PRIVATE);

    addPreferencesFromResource(R.xml.settings); // ListPreference XML file from XML Folder
}
于 2013-12-12T05:47:05.520 回答