0

我有一个带有 ListView 的 Activity。我想将一张简单的白色图片设置为背景,右下角有一个徽标。我的问题是,当我将图片设置为背景时,它有点“坐在”我的 listView 前面。使 textViews 看起来褪色。我怎样才能有效地添加没有这些副作用的背景?谢谢你的时间。

编辑:

<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>
4

1 回答 1

0

将 imageview 和 listview 放在相对布局中。为您想要放置它的图像和列表设置属性。

于 2013-01-21T18:11:49.130 回答