本文介绍了ListView的背景图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想有一个形象的ListView的背景。
每个项目没有人,但对于一切,不动如列表视图移动。
我该怎么做呢?
I would like to have an image as background of listview.No one per item, but for all, and that do not move as listview moves.How do I do this?
推荐答案
我会做这样的事情:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/the_background_image"/>
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#00000000"/>
</RelativeLayout>
这篇关于ListView的背景图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!