次のコードを使用して、3行のテーブルを作成しています。ここで必要なのは、ユーザーが行を選択するたびに、選択した行の値をトーストしたいだけです。これはサンプルアプリケーションです。実際にはベクトルがあり、ベクトル値を表形式で表示しています。ユーザーがテーブル行を選択するたびに、そのオブジェクトを取得する必要があるonItemSelectedまたは何かを実装したいと思います。
誰でもこれを手伝ってもらえますか?
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TableLayout table = (TableLayout) findViewById(R.id.TableLayout01);
table.removeAllViews();
String[] valuesList = {"1","2","3"};
for(int i=0;i<3;i++)
{
TableRow row = new TableRow(this);
// count the counter up by one
row.setLayoutParams(new LayoutParams(100,100));
// create a new TextView
TextView t = new TextView(this);
t.setTextColor(Color.BLACK);
// set the text to "text xx"
String value = valuesList[i];
t.setText(value);
row.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
view.setBackgroundColor(Color.DKGRAY);
}
});
View v = new View(this);
v.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.FILL_PARENT, 1));
v.setBackgroundColor(Color.rgb(51, 51, 51));
// add the TextView and the CheckBox to the new TableRow
TableLayout.LayoutParams tableRowParams=
new TableLayout.LayoutParams
(TableLayout.LayoutParams.FILL_PARENT,200);
int leftMargin=10;
int topMargin=5;
int rightMargin=10;
int bottomMargin=5;
tableRowParams.setMargins(leftMargin, topMargin, rightMargin, bottomMargin);
row.setLayoutParams(tableRowParams);
row.addView(t);
// add the TableRow to the TableLayout
table.addView(row);//,new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
table.addView(v);
}
}
ありがとうございました。