我在我的TableLayout中有很多行,我想訪問按鈕視圖。示例如下:子元素的孩子
<TableLayout>
<TableRow>
<Button />
<Button />
</TableRow>
<TableRow>
<Button />
<Button />
</TableRow>
</TableLayout>
從表格佈局中,我想通過按鈕循環。
TableLayout layout=(TableLayout) findViewById(R.id.Layout);
layout.getChildCount;
以上僅返回數字表行視圖。
你會需要一些遞歸這個 –
你爲什麼不給ID屬性爲每個按鈕和通過tableLayout.findViewById(R.id.yourButtonId)訪問它? – Talha
謝謝,也將很好地工作,因爲每個按鈕都有一個唯一的ID ... –