如何制作背景图片?

时间:2012-11-10 12:21:32

标签: java android eclipse

在Android应用程序(Eclipse)中如何将图像作为视图的背景?

2 个答案:

答案 0 :(得分:1)

- 我假设您要制作Activity的图片背景。

- 设置android:background属性。

<强>例如

android:background="@drawable/my_picture"

答案 1 :(得分:0)

以编程方式,您可以使用以下方法向视图添加背景:

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