我想创建一个应用程序,该应用程序向用户提问,评分答案并可能对他们做出反应以提出后续问题。为此,我想到了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方法?)
答案 0 :(得分:1)
以下是一些选择:
选项#1:针对不同的语言(例如,res/xml/questions.xml
,res/xml-es/questions.xml
,res/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_000
,question_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_000
,question_000_choice_0
等的字符串资源。但是,不要在XML中包含这些名称,而只需从问题和选择ID生成它们即可。