我正在使用可扩展列表视图,但我希望当我扩展组时滚动布局上的所有项目,包括我上面的 textview 和 imageview。
那是我的代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="7dp">
<ImageView
android:id="@+id/image_destaque"
android:layout_width="299dp"
android:layout_height="132dp"
android:layout_margin="5dp"
android:layout_marginBottom="25dp"
android:contentDescription="@string/app_name"
android:src="@drawable/ic_stub"
/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:id="@+id/btn1"
android:background="@drawable/roundedbutton"
android:textColor="#FFF"
android:textStyle="bold"
android:layout_below="@+id/image_destaque"/>
<ExpandableListView
android:id="@+id/lista_destaque"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/btn1" >
</ExpandableListView>
</RelativeLayout>