【发布时间】:2015-05-20 20:11:41
【问题描述】:
我要与ListView 开展一项活动。我想为ListView 添加背景,但是当我降低图像时,图像仍然在同一侧,但ListView 移动。我希望图像适应ListView。
我的代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/fondomax" >
<ListView
android:id="@+id/lista"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
></ListView>
我尝试过使用ScrollView,但ListView 只显示第一项。
【问题讨论】:
-
一种方法是分割背景并在列表项的视图中显示部分。
-
在您的 XML 文件中将
android:background="@drawable/fondomax"添加到ListView。 -
这种方式无效
标签: android android-listview android-xml