| addView() | ใช้เพิ่ม Object View เข้าไปใน Object HorizontalScrollView |
|---|
method:addView ( View child )
return type:void
content:ใช้เพิ่ม Object View เข้าไปใน 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 ); setContentView( scroll_view ); } }