其他分享
首页 > 其他分享> > android – 如何在Preference中创建自定义对话首选项

android – 如何在Preference中创建自定义对话首选项

作者:互联网

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

但我在这里找到了类似的东西Using EditTextPreference with 2 user input fields

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

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

解决方法:

我想通了自己.干得好.

第一个包括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
}

标签:android,sharedpreferences,android-preferences,listpreference,dialog-preference
来源: https://codeday.me/bug/20190624/1281069.html