Android 在“活动”中添加背景会使我的视图看起来褪色

Android 在“活动”中添加背景会使我的视图看起来褪色,android,android-layout,Android,Android Layout,我有一个带有ListView的活动。我想将一个简单的白色图片设置为背景,在右下角有一个徽标。我的问题是,当我将图片设置为背景时,它有点“坐”在我的ListView前面。使文本视图看起来褪色。如何有效地添加背景而不产生这些副作用?谢谢您的帮助时间 编辑: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:la

我有一个带有ListView的活动。我想将一个简单的白色图片设置为背景,在右下角有一个徽标。我的问题是,当我将图片设置为背景时,它有点“坐”在我的ListView前面。使文本视图看起来褪色。如何有效地添加背景而不产生这些副作用?谢谢您的帮助时间

编辑:

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


<dragNDropAdapter.DragNDropListView
  android:id="@+id/android:list"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content">

</dragNDropAdapter.DragNDropListView>

</RelativeLayout>

将imageview和listview置于相对布局中。
为要放置图像的位置以及列表设置属性。

是否在ListView上设置背景?如果是这样,那么如果将其设置为ListView父级的背景会怎么样?(如果您提供布局文件中的屏幕截图或代码片段,通常可以更容易地帮助您回答此类问题。)不,我将其设置为布局的背景,即listView的父级。我将在一分钟后发布xml:)