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