2012-11-10 77 views

回答

0

编程方式,你可以添加背景使用一个观点:

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

-我假设你想制作一个Activity的图片背景。

-设置android:background属性。

如:

android:background="@drawable/my_picture"