| TableLayout.LayoutParams() | ใช้สร้าง Object TableLayout.LayoutParams |
|---|
method:TableLayout.LayoutParams ( )
return type:TableLayout.LayoutParams
content:ใช้สร้าง Object TableLayout.LayoutParams
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); TableLayout table_layout = new TableLayout ( this ); TableLayout.LayoutParams params = new TableLayout.LayoutParams ( ); table_layout.addView ( new Button ( this ), params ); setContentView ( table_layout ); } }