嵌套的preferences.xml [英] Nested preferences.xml

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

问题描述

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

Let's say:

<?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>
...

解决方案

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

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

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

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