| getBackground() | ใช้คืนค่า background ของ Object View โดยคืนค่าเป็น Drawable |
|---|
method:getBackground ( )
return type:Drawable
content:ใช้คืนค่า background ของ Object View โดยคืนค่าเป็น Drawable
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); View view = new View ( this ); Drawable background_drawable = view.getBackground ( ); setContentView( view ); } }