Colspan Programatically

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

//untuk contoh lihat project DRPM Portal untuk button pada laporan, verifikasi, dan

lainnya.

TableRow trLayout = new TableRow(this);


trLayout.setBackgroundColor(Color.DKRAY);

TextView tvTes = new TextView(this);


tvTes.setText("ini colspan = 2");
tvTes.setTextSize(20);
tvTes.setTypeface(null, Typeface.BOLD);
tvTes.setVisibility(View.VISIBLE);

// Put the TextView in the TableRow


trLayout.addView(tvTes);

// And now, we change the SPAN


TableRow.LayoutParams param;
param = (TableRow.LayoutParams)tvTes.getLayoutParams();
param.span = 2; //amount of columns you will span
tvTes.setLayoutParams(param);

You might also like