| getRootView() | ใช้คืนค่า root view ของ Object View |
|---|
method:getRootView ( )
return type:View
content:ใช้คืนค่า root view ของ Object View
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); View view = new View ( this ); View root_view = view.getRootView ( ); setContentView( view ); } }