如何为linearlayout设置图像背景?

时间:2010-11-20 20:14:40

标签: android background

我想在android中为linearlayout设置图像背景?我可以吗 ?如是。怎么样?

2 个答案:

答案 0 :(得分:2)

您只需将布局的背景属性设置为某个drawable,例如:

<RelativeLayout android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/background">
</RelativeLayout>

请注意,在发布类似的基本问题之前,您应该对网站进行一些研究,已经有很多答案,这样可以省时间而不是等待答案......

答案 1 :(得分:0)

简单地说,在您的线性布局的顶部,您可以填写此块中的额外代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/yourpicture" >

另外,您可以右键单击黑色背景并选择其他属性&gt;全部按名称&gt;背景然后选择它所在的文件夹,然后选择图片/颜色。