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

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

问题描述

是它在某种程度上可以包括一个 preferences.xml 成另一种,喜欢的话可以进行布局与完成的<包括/> 标记

让我们说:

 < XML版本=1.0编码=UTF-8&GT?;
< preferenceScreen
    的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android>
    < preferenceScreen
        机器人:标题=@字符串/ pref_group_title_visual>
        <包括
            preferences_filename =XML / pref_visual/>
    < / preferenceScreen>
...
 

解决方案

解决方案这是从preferencesActivity夸大这两个preference文件。例如:

 添加preferencesFromResource(R.xml.options);
    加preferencesFromResource(R.xml.additional_options);
 

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天全站免登陆