我有一个expandablelistview以上,有一个包含图像的相对布局。我想同时滚动listview和上面的布局?有可能吗?
<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 :(得分:2)
只需将所有视图(包括ListView)放入布局中,然后将其放入ScrollView
即可答案 1 :(得分:0)
由于列表默认情况下已经有滚动视图,因此添加另一个滚动视图可能无法正常工作,因此尝试在没有列表视图的封闭布局中放置单独的滚动视图,这可能会解决您的目的。
答案 2 :(得分:0)