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