是否可以在Android Studio中创建可转换的任意XML资源?

时间:2019-05-16 19:56:25

标签: android android-xml

我想创建一个应用程序,该应用程序向用户提问,评分答案并可能对他们做出反应以提出后续问题。为此,我想到了res/xml/questions.xml中的以下XML:

<?xml version="1.0" encoding="utf-8"?>
<questions>
    <question id="000" category="2">
        <text>Yes or no?</text>
        <answers>
            <choice id="0" score="+5">Yes</choice>
            <choice id="1" score="-5">No</choice>
        </answers>
    </question>
    <question id="010" category="1">
        <parent id="000" choice="0"/>
        <text>Whats my question?</text>
        <answers>
            <choice id="0" score="-5">Shut up.</choice>
            <choice id="1" score="0">I don't care.</choice>
            <choice id="2" score="+5">I like your attitude!</choice>
        </answers>
    </question>
</questions>

我想支持多种语言。如何在不重新定义不同XML的相同逻辑的情况下转换<text><choice>的内容? (还是我应该完全放弃XML方法?)

1 个答案:

答案 0 :(得分:1)

以下是一些选择:

选项#1:针对不同的语言(例如,res/xml/questions.xmlres/xml-es/questions.xmlres/xml-de/questions.xml)具有该XML的res/xml-zh/questions.xml和其他变体

选项#2:在有英文字符串的地方,应使用映射到字符串资源的值。因此,res/xml/questions.xml可能看起来像:

<?xml version="1.0" encoding="utf-8"?>
<questions>
    <question id="000" category="2">
        <text>question_000</text>
        <answers>
            <choice id="0" score="+5">question_000_choice_0</choice>
            <choice id="1" score="-5">question_000_choice_1</choice>
        </answers>
    </question>
    <question id="010" category="1">
        <parent id="000" choice="0"/>
        <text>question_010</text>
        <answers>
            <choice id="0" score="-5">question_010_choice_0</choice>
            <choice id="1" score="0">question_010_choice_1</choice>
            <choice id="2" score="+5">question_010_choice_2</choice>
        </answers>
    </question>
</questions>

然后,您将拥有question_000question_000_choice_0等的字符串资源。解析XML时,然后在getIdentifier()对象上使用Resources来查找与诸如question_000_choice_0之类的内容相对应的字符串资源ID。

选项3:让XML简单描述基础知识:

<?xml version="1.0" encoding="utf-8"?>
<questions>
    <question id="000" category="2">
        <answers>
            <choice id="0" score="+5" />
            <choice id="1" score="-5" />
        </answers>
    </question>
    <question id="010" category="1">
        <parent id="000" choice="0"/>
        <answers>
            <choice id="0" score="-5" />
            <choice id="1" score="0" />
            <choice id="2" score="+5" />
        </answers>
    </question>
</questions>

您仍将拥有question_000question_000_choice_0等的字符串资源。但是,不要在XML中包含这些名称,而只需从问题和选择ID生成它们即可。