我的xml是这种结构的
        
<TextView
    android:layout_width="fill_parent"
    android:layout_height="50px"
    android:text="This is head!!!"
    />
     <ExpandableListView 
android:id="@id/android:list" 
android:groupIndicator="@null"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#808080"
android:cacheColorHint="#00000000" 
android:listSelector="@drawable/media"

/>
     <TextView 
    android:layout_width="fill_parent"
    android:layout_height="30px"
    android:text="This is foot!!"
   />
         
        现在的问题是吧ExpandableListView展开后head部分不动,而foot部分看不到了,我希望的效果是滚动屏幕head和foot也一起滚动,这个怎么解决,谢谢大家