method:setSmoothScrollingEnabled ( boolean smoothScrollingEnabled )
return type:void
content:ใช้กำหนดว่า อนุญาติ ให้ใช้ smooth scroll หรือไม่
example:public class AndroidBamboo extends Activity
{
public void onCreate( Bundle savedInstanceState )
{
super.onCreate ( savedInstanceState );
HorizontalScrollView scroll_view = new HorizontalScrollView ( this );
Button button = new Button ( this );
button.setText ( "InTo BambooLabCode" );
scroll_view.addView ( button );
scroll_view.setSmoothScrollingEnabled ( false );
setContentView( scroll_view );
}
}