动态创建的功能可点击TableRows

时间:2012-07-25 20:49:08

标签: android onclick tablelayout tablerow clickable

我看到了这个链接(http://stackoverflow.com/questions/6603868/android-onclicklistener-and-table-layout),这似乎适用于提问的人。话虽如此,这是我的情况。

我有一个TableLayout,动态填充了四列数据。整个行需要是可点击的,因为没有像上面链接的示例那样的按钮。

单击的行需要传递其第一列(第0列)数据,这只是一个字符串。这是调用创建新行的函数。

private void addLotTableRow(CharSequence [] row, int count) {
    final TableLayout table = (TableLayout) findViewById(R.id.lotsTableList);
    final TableRow tr = (TableRow) getLayoutInflater().inflate(R.layout.lotsrow, null);
    TextView tv;
    // Fill Cells
        tv = (TextView) tr.findViewById(R.id.lotCell1);//Cell 1: Lot Number
        tv.setText(row[0]);

        tv = (TextView) tr.findViewById(R.id.lotCell2);//Cell 2: Sample
        tv.setText(row[1]);

        tv = (TextView) tr.findViewById(R.id.lotCell3);//Cell 3: Inspected
        tv.setText(row[3]);

        tv = (TextView) tr.findViewById(R.id.lotCell4);//Cell 4: Total
        tv.setText(row[2]);

        table.addView(tr);
}

所以我最初尝试制作一个tr.setOnClickListener(new View.OnclickListener(){blahblah});在这个函数中,就在table.addView(tr)行之前。 “blah blah”当然是onClick(View v)功能。我最初只会得到最后一行的数据,无论我点击哪一行。现在,我正在尝试像上面的链接那样做,并在创建所有表行之后从更高的函数生成onclicks。我可能会提供更多信息,但我认为人们可以从中获得这个想法!谢谢你的帮助!

1 个答案:

答案 0 :(得分:1)

底线:我想通了!

根据我在问题中发布的链接找到我的解决方案,我意识到我需要创建一个textview对象才能看到单元格的数据!所以这是我的代码,与上面的代码相关,保持不变!

    int rowNumCount = table.getChildCount();
    for(int count = 1; count < rowNumCount; count++) {
        View v = table.getChildAt(count);
        if(v instanceof TableRow) {
            final TableRow clickRow = (TableRow)v;
            int rowCount = clickRow.getChildCount();
            v.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {
                    Context context = getTabHost().getContext();
                    TableRow row = (TableRow)v;
                    TextView tv = (TextView)row.getChildAt(0);
                    CharSequence text = "Lot VALUE Selected: " + tv.getText();
                    int duration = Toast.LENGTH_SHORT;
                    Toast.makeText(context, text, duration).show();
                }
            });
        }
    }

就像我说的,我只需要抓取第一列数据,因此row.getChildAt(0);线!所以我知道甚至没有人有机会回答这个问题,但我希望我的答案可以在将来帮助其他人!

问题的基本原理,“为什么不使用listview?” 答:我认为对于我正在制作的内容,表格格式看起来要好得多。

虽然我可能不会对我的代码设置进行大的改动,但我总是乐于听到有助于改进我的代码的更改!我爱这个社区!