for循环使用xml字符串

时间:2014-08-07 13:35:14

标签: android for-loop android-xmlpullparser

好的,我有一个xml string传递给我从SOAP请求获得的函数,我也无法弄清楚设置边界的限制。我现在有这个,但我认为它过滤了很多次而且是错误的。

for(int i=0; i < xmlForTable.length(); i ++){

         TableRow row = new TableRow(this);
         TableRow.LayoutParams lp = new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT,TableRow.LayoutParams.WRAP_CONTENT);
         row.setLayoutParams(lp);

         .......... //code

         }

理想情况下,我想制作i=0; i<xmlForTable.(count of words); i++这样我就可以遍历每个单词,但我不确定如何做到这一点。

任何帮助都会很好,非常感谢,谢谢!

0 个答案:

没有答案