0

我为我的在线网站制作了一些 Flash 文件(.xml)。现在我希望这些 xml 文件中的数据用于我的 android 应用程序。我怎样才能做到这一点。xml 文件的格式非常好,整洁且编写正确。这是该 xml 文件的一小段代码,在所有其他文件中也几乎相同。thnx 提前。

<slide id="2" template="listeningStayMultiText">
    <images>
        <image direction="Right" xCord="100" yCord="170"><![CDATA[images/common/1x1.gif]]></image>
    </images>
    <sentences>
        <sentence index="1"  fontColor="0x000000"  width="600" height="70" size="18" xPos="50" yPos="20" bgColor="0xDBEFDF" borderColor="0x006600" align="left"><![CDATA[<br/>  Let’s look at how we make negative sentences in the simple present tense -]]></sentence>
        <sentence index="2"  fontColor="0xffffff"  width="300" height="60" size="18" xPos="50" yPos="100" bgColor="0x006600" borderColor="0x000000" align="center"><![CDATA[<br/>POSITIVE SENTENCE]]></sentence>
        <sentence index="3"  fontColor="0xffffff"  width="300" height="60" size="18" xPos="350" yPos="100" bgColor="0x006600" borderColor="0x000000" align="center"><![CDATA[<br/>NEGATIVE SENTENCE]]></sentence>
        <sentence index="4"  fontColor="0x000000"  width="300" height="120" size="18" xPos="50" yPos="160" bgColor="0xDBEFDF" borderColor="0x000000" align="center"><![CDATA[<br/>I play football]]></sentence>
        <sentence index="5"  fontColor="0x000000"  width="300" height="120" size="18" xPos="350" yPos="160" bgColor="0xDBEFDF" borderColor="0x000000" align="center"><![CDATA[<br/>I <b>do not</b> play football<br/>OR<br/>I <b>don't</b> play football]]></sentence>
        <sentence index="6"  fontColor="0x000000"  width="600" height="90" size="18" xPos="50" yPos="300" bgColor="0xDBEFDF" borderColor="0x000000" align="center"><![CDATA[<br/>We use '<b>do not</b>' or '<b>don’t</b>' with ‘&lt;b>I</b>’ to make negative sentences in the simple present tense.]]></sentence>
    </sentences>
    <audio><![CDATA[images/common/silence.mp3]]></audio>        
    <bgImage><![CDATA[images/bg.jpg]]></bgImage>
</slide>
4

1 回答 1

0

看看简单的框架

它在您的数据模型中使用注释,并且非常容易实现。在你的情况下,它看起来像

@Root
public class Slide {
    @Attribute
    public int id;
    @Attribute
    public String template;
    @ElementList
    public List<Images> image;
    @ElementList
    public List<Sentence> sentences;

}

ETC...

于 2012-08-24T11:57:07.370 回答