0

在我的 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_.]
4

1 回答 1

1

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

代替

homeBackground.png

将文件名重命名为:

home_background.png
于 2013-10-31T13:00:02.503 回答