代码之家  ›  专栏  ›  技术社区  ›  jetty

获取Android中TableLayout的总RowCount

  •  4
  • jetty  · 技术社区  · 9 年前

    我有一个TableLayout,在其中我在LayoutXML文件中添加表列标题,并通过代码动态添加其他行(基于条件)。因此,在某些情况下,表中没有添加行。 我需要检查表中是否没有行。我该怎么做?

    2 回复  |  直到 9 年前
        1
  •  11
  •   HassanUsman    9 年前

    通过此代码,您可以获得 rowCount 对于 TableLayout

    TableLayoutName.getChildCount();
    

    此方法返回整数值形式的行总数。

        2
  •  2
  •   Rohan    9 年前

    您尝试过使用getChildCount()吗?您甚至可以使用getChildAt(int值)。