我正在尝试为 Android 开发一个应用程序,但我遇到了一些问题。我有一个主要的 RelativeLayout,它有一个漂亮的背景图像。当我通过 AVD(通过 Eclipse)运行它时,它可以工作并且看起来很好,但是当我尝试在我的 Galaxy Nexus 手机上测试它时,它的背景是纯黑色的。我该如何解决这个问题?
主要布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/GPRelativeLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/gempouchbg"
android:orientation="vertical">
它与一些标题布局合并。
<include
android:id="@+id/headerMerge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="45dp"
layout="@layout/header" />
谁能帮我?:/