所以我的布局中有ExpandableListView
,但出于某种原因,当我运行应用程序时,它只显示了部分内容。是的,这是“一些”部分 - 实际上几乎是第一个GroupView
。
如果我在android:layout_height="some dp"
的列表中设置了固定的高度,而不是android:layout_height="match_parent"
我可以看到整个列表。但是,如果我有太多组视图和子视图,我只能看到它的一部分(因为高度是固定的)。
我尝试将可扩展列表放在LinearLayout
内,尝试设置android:layout_height="wrap_content"
,依此类推,但没有成功。
我该如何解决这个问题?
谢谢,
<?xml version="1.0" encoding="utf-8"?>
<!-- That's the main layout.-->
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll_view_m"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- This LinearLayout is here because a ScrollView can only have one child view.-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- That's the second ScrollView. But this one is horizontal.-->
<HorizontalScrollView
android:id="@+id/map_layout"
android:layout_width="match_parent"
android:layout_height="400dp">
<!-- This LinearLayout is here because a ScrollView can only have one child view.-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<!-- Some view's here -->
</LinearLayout>
</HorizontalScrollView>
<TextView
android:id="@+id/scroll_down"
android:text="Scroll down to see marker info!"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/holo_green_light"
android:background="@android:color/black"/>
<ExpandableListView
android:id="@+id/m_expandable_list_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
</ExpandableListView>
</LinearLayout>
</ScrollView>