336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle
savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
/* Find Tablelayout defined in main.xml */
TableLayout
tl = (TableLayout) findViewById(R.id.store_table);
/* Create a new row to be added. */
for (int i = 0; i < 3;
i++) {
TableRow
tr = new TableRow(this);
tr.setLayoutParams(new
LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
/* Create a Button to be the row-content. */
Button
b = new Button(this);
b.setText("Dynamic Button");
b.setLayoutParams(new
LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
/* Add Button to row. */
tr.addView(b);
Button
c = new Button(this);
c.setText("Dynamic Button2");
c.setLayoutParams(new
LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
/* Add Button to row. */
tr.addView(c);
/* Add row to TableLayout. */
tl.addView(tr,
new TableLayout.LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
}
}
}