嵌套的首选项.xml [英] Nested preferences.xml

查看:34
本文介绍了嵌套的首选项.xml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有可能将一个 preferences.xml 包含到另一个中,就像它可以用 <include/> 标签完成的布局一样?

Is it somehow possible to include one preferences.xml into another, like it can be done for layouts with the <include /> tag?

让我们说:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen 
    xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceScreen 
        android:title="@string/pref_group_title_visual">
        <include 
            preferences_filename="xml/pref_visual"/>
    </PreferenceScreen>
...

推荐答案

这里的解决方案是从 PreferencesActivity 中增加两个首选项文件.例如:

Solution here it is to inflate both preference files from PreferencesActivity. For example:

    addPreferencesFromResource(R.xml.options);
    addPreferencesFromResource(R.xml.additional_options);

这篇关于嵌套的首选项.xml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆