0

我有一个带表格的TableLayout 。如何为该表的每个单元格设置onClicklisteners

我还没有找到任何合适的解决方案来解决这个问题。

4

3 回答 3

3

试试这个代码,

TableLayout yourRootLayout = findView....
int count = yourRootLayout.getChildCount();
for(int i = 0; i < count; i++){
    View v = yourRootLayout.getChildAt(i);
    if(v instanceof TableRow){
        TableRow row = (TableRow)v;
        int rowCount = row.getChildCount();
        for (int r = 0; r < rowCount; r++){
            View v2 = row.getChildAt(r);
            if (v2 instanceof Button){
                Button b = (Button)v2;
                b.setOnClickListener(this);
            }
        }
    }
于 2013-10-09T09:30:37.750 回答
0

我相信您必须为每个包含您的 TableLayout 的 View 对象设置点击侦听器。

于 2013-10-09T09:29:24.697 回答
0

如果您有表格行,请尝试这样:

tableRow.setClickable(true);
tableRow.setOnClickListener(onClickListener);

否则,您需要对 tableLayout 单元格使用setTag()getTag()使用 customAdapter。您可以从这里了解如何setTag()/getTag()在适配器中使用。

在适配器内部,您可以跟踪:

@Override
public View getView(final int row, final int column, View converView, ViewGroup parent) {
    if (converView == null) {
        converView = inflater.inflate(getLayoutResource(row, column), parent, false);
        if (row == -1){
            converView.setId(column+2);         // assign new id to the cell view
            setHeaderId(column);        // store that view id in the header array
        }  
    }

    converView.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

               // perform what you want

        }
    });     

    return converView;
}
于 2013-10-09T09:31:11.657 回答