在android中为RelativeLayout添加背景图片

时间:2014-05-24 18:33:36

标签: android android-layout background background-image

我尝试使用android:background="@drawable/imageURL"将背景图片添加到Android应用中。我将图像添加到drawable-hdpi文件夹,但是我收到了错误。我正在尝试将图片添加到RelativeLayout。我也尝试使用LinearLayout,但它也没有用。

那么如何在Android中的RelativeLayout内向我的应用添加背景图片?

错误是什么?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/abc.png"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/hello_world" />

    </RelativeLayout>

2 个答案:

答案 0 :(得分:5)

替换

android:background="@drawable/abc.png"

android:background="@drawable/abc"

来自文档:

  

可以是表单中对其他资源的引用   “@ [+] [包:]类型:名称为”

如您所见,扩展名不是属性值

的一部分

答案 1 :(得分:1)

只需撰写@drawable/abc而不是@drawable/abc.png