0

動的テーブル ビューでセル クリック (例: 2 行目の 3 列目、つまり 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 に使用できます。GridView で設定できます。GridView の詳細については、こちらをご覧ください。TableLayoutListViewOnItemClickListener

于 2012-07-24T08:01:31.547 に答える