大家好:)我使用ExpandableListView。我的ExpandableList位于屏幕的一部分中。我希望在扩展列表时结果是,而不是增加整个屏幕的大小。但是我的列表也有自己的卷轴。 (wrap_content,match_parent,Ndp都是自己的滚动。)请参考图片。
你能看到ExpandableList中的滚动条吗? 我想成为可扩展列表滚动整个屏幕。
我的xml代码(删除了不必要的部分):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:id="@+id/scollview"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:orientation="horizontal" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal" />
<ExpandableListView
android:id="@+id/pastMedalList"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_marginTop="15dp"
android:groupIndicator="@null"/>
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>