序列我有以下XML文件:指定一個XML文件
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<game>
<a>
<b>
<test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="picture">
<pic>sample.png</pic>
</test>
<c>
<test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="content">
<text> Something </text>
<photo> p1.png </photo>
<position> middle </position>
</test>
<test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="content">
<text> Something else </text>
<photo> p2.png </photo>
<position> corner </position>
</test>
<test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="content">
<text> some text here </text>
<photo> p3.png </photo>
<position> corner </position>
</test>
</c>
</b>
</a>
</game>
這個XML被解析在遵循MVC架構的代碼。代碼由模型解析並呈現在視圖中。視圖應該知道視圖上元素的順序行爲。例如,在上面的xml中,當它被解析並遇到標籤中的第一個標籤時,視圖上應該有一個圖片samle.png。當它下面看到標籤內部的三個標籤時,視圖應該最初顯示照片p1,過了一段時間後,它應該清除照片p1,然後在視圖上顯示照片p2和p3。
這裏我們不需要擔心編碼部分。我們的任務是通過xml告訴代碼'這是序列',這意味着我需要在xml中編寫一些內容,告訴上述事件的順序,當代碼解析時,代碼理解什麼是序列並相應地在視圖上呈現它。
讓我知道,如果它是混亂的,還是讓我知道你的方法在這裏,我嘗試了幾個人,但我不認爲他們是正確的。讓我知道如果任何人能想到的東西