| getLayout() | ใช้คืนค่า layout ของ Object TextView |
|---|
method:getLayout ( )
return type:Layout
content:ใช้คืนค่า layout ของ Object TextView
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); TextView text = new TextView ( this ); text.setText ( "WelCome To BambooLabCode.com" ); Layout layout = text.getLayout ( ); setContentView ( text ); } }