在Android应用程序(Eclipse)中如何将图像作为视图的背景?
答案 0 :(得分:1)
- 我假设您要制作Activity
的图片背景。
- 设置android:background
属性。
<强>例如强>
android:background="@drawable/my_picture"
答案 1 :(得分:0)
以编程方式,您可以使用以下方法向视图添加背景:
View view = yourView;
view.setBackgroundDrawable(yourDrawable);
//or with
view.setBackgroundResource(resid);