我知道我可以为每个表格使用它,但它的代码很长
setOnClickListener(new OnClickListener() {
public void onClick(View v)
{
//perform action
}
});
但我有 12 个表行,我认为这很长.. 也许是这种结构
tablelayout {
if (tablerow.id = 1) {
// action if i pressed the first row
} else if (tablerow.id = 2) {
// action if i pressed the second row
}
}