2012-11-10 79 views

回答

0

編程方式,你可以添加背景使用一個觀點:

View view = yourView; 
view.setBackgroundDrawable(yourDrawable); 
//or with 
view.setBackgroundResource(resid); 
1

-我假設你想製作一個Activity的圖片背景。

-設置android:background屬性。

如:

android:background="@drawable/my_picture"