listView и ScrollView

У меня есть линейный макет с 3 изображениями и просмотр списка в вертикальной ориентации. Я хочу прокрутить весь экран, включая изображения, когда пользователь прокручивает список. Это возможно? Спасибо

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#222222"
    android:orientation="vertical" >



            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ph2" />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ph1" />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ph2" />

    <ListView
        android:id="@+id/ll4_list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="0.5"
        android:cacheColorHint="#00000000" />

</ScrollView>

Ответы на вопрос(2)

Ваш ответ на вопрос