| getRight() | ใช้คืนค่า ตำแหน่ง ทางด้านขวา ของ Object View ในแกน X |
|---|
method:getRight ( )
return type:int
special:final
content:ใช้คืนค่า ตำแหน่ง ทางด้านขวา ของ Object View ในแกน X
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); View view = new View ( this ); int view_x_right = view.getRight ( ); setContentView( view ); } }