0

我有一个可扩展列表视图,上面有一个包含图像的相对布局。我想同时滚动列表视图和上面的布局?是否可以 ?

<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>

4

3 回答 3

2

只需将所有视图(包括 ListView)放入布局中,然后将其放入 ScrollView

于 2013-04-17T16:56:41.883 回答
0

由于默认情况下列表已经有一个滚动视图,添加另一个滚动视图可能无法正常工作,因此尝试在没有列表视图的封闭布局中放置一个单独的滚动视图,这可能会解决您的目的。

于 2013-04-17T17:03:35.320 回答
0

您可以将RelativeLayout 添加为ExpandableListView 的HeaderView。

ListView#addHeaderView(View v)

请参考这个

于 2013-04-17T17:11:59.257 回答