Android LinearLayout getChildAt(索引)

时间:2013-04-29 10:54:29

标签: android android-layout android-linearlayout

LinearLayout getChildAt(index)方法始终返回子视图的第0个位置。如何通过LinearLayout getChildAt(index)在{{1}}中保留子视图。

任何帮助。谢谢

1 个答案:

答案 0 :(得分:8)

可能对你有所帮助。

这是你的线性布局。

int childcount = ll.getChildCount();
for (int i=0; i < childcount; i++){
      View v = ll.getChildAt(i);
}