I just found a bug for my APP, which is run normally in Android 4.0 , but will crash in Android 2.3 , I trace it and found the problem is decode XML files
the XML files format is
<a>
<b></b>
</a>
<a>
<b></b>
</a>
it is fine when I use PULL in Android 4.0 ,but in Android 2.3 , I found out that the format has to be :
*<AAA>
<a>
<b></b>
</a>
<a>
<b></b>
</a>
</AAA>*
it means that the XML must be a tree in Android 2.3 then we could use PULL , otherwise it will crash ?
So is there any document from Google to prove that ? I'm looking for that .
Thanks a lot !