web-dev-qa-db-ja.com

TableLayoutのすべてのTableRowを取得します。

TableLayoutですべてのTableRowを取得する方法について何時間も探していました。行を動的に追加および削除する方法はすでに知っていますが、すべての行をループして一部を選択的に削除する必要があります。

私は回避策を思い付くことができると思いますが、私は自分のアプリで粗雑なハックを回避しようとしています。

27
eugene

getChildCount() および getChildAt(int) をそれぞれ使用してみましたか?

ループでかなり簡単でなければなりません:

for(int i = 0, j = table.getChildCount(); i < j; i++) {
    View view = table.getChildAt(i);
    if (view instanceof TableRow) {
        // then, you can remove the the row you want...
        // for instance...
        TableRow row = (TableRow) view;
        if( something you want to check ) {
            table.removeViewAt(i);
            // or...
            table.removeView(row);
        }
    }
}
49

他のタイプのビューがある場合

TableLayout layout = (TableLayout) findViewById(R.id.IdTable);

for (int i = 0; i < layout.getChildCount(); i++) {
    View child = layout.getChildAt(i);

    if (child instanceof TableRow) {
        TableRow row = (TableRow) child;

        for (int x = 0; x < row.getChildCount(); x++) {
            View view = row.getChildAt(x);
            view.setEnabled(false);
        }
    }
}
15
user2963492

しばらく同じものを探していました。私は、テーブルレイアウトでビューを確認する方法を探していました。私はこれをしました:

    //This will iterate through your table layout and get the total amount of cells.
    for(int i = 0; i < table.getChildCount(); i++)
    {
        //Remember that .getChildAt() method returns a View, so you would have to cast a specific control.
        TableRow row = (TableRow) table.getChildAt(i); 
        //This will iterate through the table row.
        for(int j = 0; j < row.getChildCount(); j++)
        {
            Button btn = (Button) row.getChildAt(j);
            //Do what you need to do.
        }
    }
2
Jason Cidras

TableRowsを削除しようとすると、IDカウンターが減少するため、plsはこのループを使用して削除します。削除しない場合は、上記のループの一部を使用できます。D

    TableLayout table = (TableLayout) findViewById(R.id.tblScores);
    for(int i = 0; i < table.getChildCount(); i = 0)
    {
        View child = table.getChildAt(0);
        if (child != null && child instanceof TableRow)
        {
            TableRow row = (TableRow) child;
            row.removeAllViews();
            table.removeViewAt(i);
        }        
    }

これにより、すべての行がクリアされます。

私の主な問題は、すべての行が新しく配置される行を削除すると、ID = 5の行がID = 4になるようになり、ID = 3の行を削除した場合です。

だから多分あなたはカウンターをリセットしてもう一度繰り返す必要があるか、すべての行をクリアした後に新しいテーブルを生成する必要がある

1
Spektakulatius
for(int i = 0, j < table.getChildCount(); i < j; i++){
    // then, you can remove the the row you want...
    // for instance...
    TableRow row = (TableRow) table.getChildAt(i);
    if( something you want to check ) {
        removeViewAt(i);
        // or...
        removeView(row);
    }
}
0
SuSh