| findViewById() | ใช้ค้นหา View ที่อยู่ภายใน Object View นี้ ที่มี id ตามที่กำหนด |
|---|
method:findViewById ( int id )
return type:View
special:final
content:ใช้ค้นหา View ที่อยู่ภายใน Object View นี้ ที่มี id ตามที่กำหนด
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); View view = new View ( this ); View sub_view_direct = view.findViewById ( R.id.header ); setContentView( view ); } }