0

我想知道如何在动态表格视图中获取单元格点击(例如:我想点击第二行的第三列,即 2x3 单元格)事件。我知道行点击。但我想要特定的单元格点击。如果列表视图包含行和列,是否可以在列表视图中?

请帮忙

谢谢

4

2 回答 2

1

动态使用 TableLayout 你可以做到这一点。

   TableLayout table = new TableLayout(getApplicationContext());
   TableLayout.LayoutParams tab_lp = new TableLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
   table.setLayoutParams(tab_lp);

  TableRow row = new TableRow(this);

  final TextView tvProduct = new TextView(getApplicationContext());

  LinearLayout.LayoutParams lp_l3 = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, (LayoutParams.WRAP_CONTENT));
    tvProduct.setLayoutParams(lp_l3);
    tvProduct.setText(product);
    tvProduct.setClickable(true);   

    row.addView(tvProduct,  new TableRow.LayoutParams(1));
    table.addView(row, new TableLayout.LayoutParams());     

    tvProduct.setOnClickListener(new OnClickListener(){
        public void onClick(View v) {
            Intent i = new Intent(Beers.this,BeerDetails.class);
            i.putExtra("Product_Name",tvProduct.getText().toString());
            startActivity(i);
         }
    });

    LinearLayout linearMain = (LinearLayout) findViewById(R.id.linearmainLayout);
    linearMain.addView(table);      
    linearMain.postInvalidate();
于 2012-07-24T08:23:46.787 回答
0

您可以使用GridView这种 UI 而不是TableLayoutListView。在 GridView 中,您可以设置OnItemClickListener. 在此处阅读有关 GridView的更多信息。

于 2012-07-24T08:01:31.547 回答