在 Android 中获取 TableLayout 的总行数
Get total RowCount for TableLayout in Android
我有一个 Table 布局,其中我在布局 XML 文件中添加 Table 列标题,并通过代码动态添加其他行(基于条件) .所以有些情况下没有行添加到 table。
我需要检查 table 是否不存在任何行。我该怎么办?
您尝试过使用 getChildCount() 吗?您甚至可以使用 getChildAt(int value) 。
通过此代码,您可以获得 TableLayout
的总 rowCount
TableLayoutName.getChildCount();
此方法return整数值的总行数。
我有一个 Table 布局,其中我在布局 XML 文件中添加 Table 列标题,并通过代码动态添加其他行(基于条件) .所以有些情况下没有行添加到 table。 我需要检查 table 是否不存在任何行。我该怎么办?
您尝试过使用 getChildCount() 吗?您甚至可以使用 getChildAt(int value) 。
通过此代码,您可以获得 TableLayout
rowCount
TableLayoutName.getChildCount();
此方法return整数值的总行数。