| abortAnimation() | ใช้หยุด animation ของการ scroll |
|---|
method:abortAnimation ( )
return type:void
content:ใช้หยุด animation ของการ scroll
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); Scroller scroller = new Scroller ( this ); TextView text_view = new TextView ( this ); text_view.setScroller ( scroller ); scroller.abortAnimation ( ); setContentView ( text_view ); } }