2013-04-17 78 views
0

我有一個expandablelistview和以上,有一個相對佈局,其中包含一個圖像。我想同時滾動列表視圖和上述佈局?可能嗎 ?多滾動視圖android

<RelativeLayout 
    android:id="@+id/thumbnail" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:layout_marginLeft="15dip" 
    android:layout_marginTop="38dip" 
    android:padding="3dip" > 

     <ImageView 
      android:id="@+id/list_image" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:background="@drawable/sss" /> 
    </RelativeLayout> 

<RelativeLayout 
    android:id="@+id/topbarsecond" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"> 

<ExpandableListView 
    android:id="@+id/expandableListView1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_marginLeft="5dip" 
    android:layout_marginRight="5dip" 
    android:layout_marginBottom="25dip" 
    android:layout_marginTop="5dip" 
    android:layout_alignParentLeft="true" 
    android:cacheColorHint="#00000000" 
    android:divider="#d6d7da" 
    android:dividerHeight="5dp" 
    android:groupIndicator="@null" 
    android:layout_alignParentTop="true" > 
</ExpandableListView> 

回答

0

您可以將RelativeLayout添加爲ExpandableListView的HeaderView。

ListView#addHeaderView(View v) 

請參考this

2

只要把所有的意見(包括ListView控件)成佈局,然後把它放到一個滾動型

0

因爲名單已經默認添加另一個滾動視圖可能無法正常工作滾動型,因此嘗試在沒有列表視圖的情況下在封閉佈局中放置單獨的滾動視圖,這可能會解決您的目的。