| getCompoundPaddingLeft() | ใช้คืนค่า padding left ของ Object TextView |
|---|
method:getCompoundPaddingLeft ( )
return type:int
content:ใช้คืนค่า padding left ของ 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" ); int padding_left = text.getCompoundPaddingLeft ( ); setContentView ( text ); } }