我有一個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>