膨らんだテーブルからボタンのタグを取得するにはどうすればよいですか?これまでに次のコードがありますが、ボタンを押したときにボタンからタグを取得するにはどうすればよいですか?
TableLayout table = (TableLayout)findViewById(R.id.scheduleTable);
for (int i = 0; i < jlen; i++) {
// Inflate
TableRow row = (TableRow)LayoutInflater.from(UpdateScheduleActivity.this).inflate(R.layout.schedulerow, null);
((TextView)row.findViewById(R.id.attr_day)).setText(json_schedule.getString(KEY_DOW));
((TextView)row.findViewById(R.id.attr_start)).setText(json_schedule.getString(KEY_START));
((TextView)row.findViewById(R.id.attr_stop)).setText(json_schedule.getString(KEY_STOP));
((Button)row.findViewById(R.id.btnRemove)).setTag(sid);
table.addView(row);
}
table.requestLayout();