method:getMaxScrollAmount ( )
return type:int
content:ใช้คืนค่า จำนวนสูงสุด ของ การ scroll ของ Object ScrollView
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 );
int max_scroll = scroll_view.getMaxScrollAmount ( );
setContentView ( scroll_view );
}
}