Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ListView with background image

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?

like image 485
OkyDokyman Avatar asked Dec 09 '22 10:12

OkyDokyman


1 Answers

I'd do something like 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>
like image 88
Cristian Avatar answered Dec 18 '22 19:12

Cristian