method:getMaxScrollAmount ( )
return type:int
content:ใช้คืนค่า จำนวนของ scroll ทั้งหมด ของ Object HorizontalScrollView
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 );
int max_scroll = scroll_view.getMaxScrollAmount ( );
setContentView( scroll_view );
}
}