method:setSmoothScrollingEnabled ( boolean smoothScrollingEnabled )
return type:void
content:ใช้กำหนดว่า จะใช้ smooth scroll หรือไม่
example:public class AndroidBamboo extends Activity
{
public void onCreate( Bundle savedInstanceState )
{
super.onCreate ( savedInstanceState );
ScrollView scroll_view = new ScrollView ( this );
Button button = new Button ( this );
button.setText ( "Into BambooLabCode" );
ViewGroup.LayoutParams params = new ViewGroup.LayoutParams ( 100, 24 );
scroll_view.addView ( button, 0, params );
scroll_view.setSmoothScrollingEnabled ( true );
setContentView ( scroll_view );
}
}