在android中相对布局不加载背景图片

时间:2013-10-13 06:09:35

标签: android background relativelayout

在我的android xml代码中,我想为相对布局绘制背景图像:

我有一个名为homeBackground.png的文件。但是当我在手机上运行时它实际上并没有出现。如果我在GUI编辑器中查看布局,我可以看到背景。

有谁知道这里有什么问题?

感谢。

<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:background="@drawable/homeBackground"
    tools:context=".ActivityCourses" >

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

</RelativeLayout>

修改

现在我明白了

[2013-10-13 02:21:10 - NAME] res\drawable-hdpi\homeBackground.png: Invalid file name: must contain only [a-z0-9_.]

1 个答案:

答案 0 :(得分:1)

资源文件中不允许使用大写字母。

而不是

homeBackground.png

将文件名重命名为:

home_background.png