method:isShrinkAllColumns ( )
return type:boolean
content:ใช้ตรวจสอบว่า column ทุก column เป็นแบบ shrink หรือไม่
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.isShrinkAllColumns ( 0 ) )
{
Toast.makeText ( this, "All Column Is Shrink", Toast.LENGTH_SHORT ).show ( );
}
setContentView ( table_layout );
}
}