如何为表格的每个单元格添加onclicklistener?

时间:2013-10-09 09:24:42

标签: android android-layout onclicklistener android-tablelayout

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

我没有找到解决此问题的正确方法。

3 个答案:

答案 0 :(得分: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);
            }
        }
    }

答案 1 :(得分:0)

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

答案 2 :(得分:0)

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

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

否则,您需要对tableLayout单元格使用customAdapter setTag()getTag()。您可以了解如何在here的适配器中使用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;
}