Kir*_*irk 5 android android-preferences sharedpreferences listpreference dialog-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"/>
Run Code Online (Sandbox Code Playgroud)
到目前为止,我已经做到了这一点。DialogPreference 打开良好,但如何将我的标题模板附加到此自定义 DialogPreference
我弄清楚了我自己。干得好。
第一个在 DialogPreference XML 中包含以下标头模板行
<include layout="@layout/activity_header_template" />
Run Code Online (Sandbox Code Playgroud)
并准备自己的自定义对话框布局,就像普通的自定义对话框模板一样。真正的需要是,我想自定义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>
Run Code Online (Sandbox Code Playgroud)
以下几行非常重要,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);
}
Run Code Online (Sandbox Code Playgroud)
应在 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
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
12312 次 |
| 最近记录: |