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