| TableLayout() | ใช้สร้าง Object TableLayout |
|---|
return type:TableLayout ( Context context )
method:TableLayout
content:ใช้สร้าง Object TableLayout
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 ( 200, 30 ); table_layout.addView ( new Button ( this ), params ); setContentView ( table_layout ); } }