return type:isColumnCollapsed ( int columnIndex )
method:boolean
content:ใช้ตรวจสอบว่า column ณ ตำแหน่งที่กำหนด เป็นแบบ collapse หรือไม่
example:public class AndroidBamboo extends Activity
{
public void onCreate( Bundle savedInstanceState )
{
super.onCreate ( savedInstanceState );
TableLayout table_layout = new TableLayout ( this );
table_layout.addView ( new Button ( this ), 0 );
if ( table_layout.isColumnCollapsed ( 0 ) )
{
Toast.makeText ( this, "Column 0 Is Collapsed", Toast.LENGTH_SHORT ).show ( );
}
setContentView ( table_layout );
}
}