如何在Android应用程序的翻转视图中解析文本的xml文件
您好,我正在尝试解析 XML 文件。我的 XML 文件如下所示,
<Chapters>
<chapter>
<Question>abc</Question>
<answer>avksn</answer>
</chapter>
<chapter>
<Question>def</Question>
<answer>avksn</answer>
<image>a.png</image>
</chapter>
<chapter>
<Question>ccsv</Question>
<answer>avksn</answer>
<hint>acd</hint>
</chapter>
</Chapters>
我知道正常解析 XML 文件,我的问题是我想一一显示问题,即一次只能查看一个问题,并且我放置了翻转视图。单击翻转按钮后,必须在下一页中查看相关答案。
在某些情况下,其他标签(例如 和 )必须与问题标签一起查看。如何做到这一点......请帮助我的朋友......
hi i am trying to parse an XML file. My XML file looks as below
<Chapters>
<chapter>
<Question>abc</Question>
<answer>avksn</answer>
</chapter>
<chapter>
<Question>def</Question>
<answer>avksn</answer>
<image>a.png</image>
</chapter>
<chapter>
<Question>ccsv</Question>
<answer>avksn</answer>
<hint>acd</hint>
</chapter>
</Chapters>
I know to parse the XML file normally, my problem is i want to show the Questions one by one, ie only one question must be viewed at a time and i have placed a flip view. When the flip button is clicked the related answer must be viewed in the next page.
In some cases the other tags such as and must be viewed along with question tag. how to do this..... pls help me friends.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的 xml 文件存储在哪里?我认为最好使用 XmlPullParser,例如:
如果您将 xml 存储在资产中 - 使用 AssetsManager 为其获取 XmlPullParser。
Where do you store your xml file? I think it's better to use XmlPullParser, e.g.:
If you store xml in assets - use AssetsManager to obtain XmlPullParser for it.