0

我有一个问题让我感到困惑。

这就是问题。

<Placemark>
    <name>Turn left onto Jalan Raden Ajeng Kartini</name>
<description><![CDATA[go 550&#160;m]]></description>
<StyleMap>
<Pair>
    <key>normal</key>
    <Style>
        <IconStyle>
        <Icon><href>http://maps.gstatic.com/intl/en_ALL/mapfiles/kml/paddle/pause.png</href></Icon>
        <hotSpot x="0.500000" y="0.000000" xunits="fraction" yunits="fraction" />
        </IconStyle>
        <ListStyle>
        <ItemIcon><href>http://maps.gstatic.com/intl/en_ALL/mapfiles/kml/paddle/pause-lv.png</href></ItemIcon>
        </ListStyle>
    </Style>
</Pair>
<Pair>
    <key>highlight</key>
    <Style>
        <IconStyle>
        <scale>1.300000</scale>
        <Icon><href>http://maps.gstatic.com/intl/en_ALL/mapfiles/kml/paddle/pause.png</href></Icon>
        <hotSpot x="0.500000" y="0.000000" xunits="fraction" yunits="fraction" />
        </IconStyle>
        <ListStyle>
        <ItemIcon><href>http://maps.gstatic.com/intl/en_ALL/mapfiles/kml/paddle/pause-lv.png</href></ItemIcon>
        </ListStyle>
    </Style>
</Pair>
</StyleMap>
<Point>
    <coordinates>106.827140,-6.296370,0</coordinates>
</Point>
<LookAt>
    <longitude>106.827140</longitude>
    <latitude>-6.296370</latitude>
    <range>100.000000</range>
    <tilt>45.000000</tilt>
    <heading>347.976074</heading>
</LookAt>
</Placemark>

在标签Placemark中,我们可以看到<name>...</name>包含字符串值的子标签,例如“ Turn left to jalan Raden Ajeng Kartini

在我的 XML 文档中,我发现了许多标签名称,例如这个。如何将它们保存到数组?

4

1 回答 1

1

我不太确定你在问什么。但我认为你需要一个用于 android 的 XML 解析器。

我建议阅读此链接上的指南:http: //www.jondev.net/articles/Android_XML_SAX_Parser_Example

于 2012-05-14T12:01:13.537 回答