计算Height ExpandableListView的问题

时间:2016-09-23 20:42:03

标签: android listview height expandablelistview

我试图计算可扩展列表视图的高度,这样我就可以显示包含标题的所有项目,这样用户就不必滚动查看内容。

这是我显示列表视图的片段。旁边是日历:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:orientation="vertical">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".fragments.DashboardFragment">
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        tools:context=".fragments.DashboardFragment">
        <ExpandableListView
            android:id="@+id/lvExp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
        <CalendarView
            android:id="@+id/calendarView"
            android:layout_width="match_parent"
            android:layout_height="292dp" />
    </LinearLayout>
</LinearLayout>

我计算位于片段上的setOnGroupExpandListener中的高度。首先,我得到两个孩子的高度为标题:

height += ((expListView.getChildAt(0).getHeight()+expListView.getDividerHeight())-expListView.getDividerHeight())*listAdapter.getGroupCount();

然后我使用下一个公式计算孩子的身高:

for (int i = 0; i <  listAdapter.getGroupCount();i++){
if (expListView.isGroupExpanded(i)){        
    height += listAdapter.getChildrenCount(i)*(expListView.getChildAt(0).getHeight()+expListView.getDividerHeight())-expListView.getDividerHeight();        
}
}

当我展开第一组时,在列表视图和日历之间放置一个间隙。当我扩展第二组时,它们之间会有更大的差距。

我有同样的公式来解决它们。

我应该使用其他公式来计算身高吗?

All items collapsed

First item expanded

All items expanded

1 个答案:

答案 0 :(得分:1)

你根本不应该这样做。列表视图的要点是滚动。如果您不想滚动,只需将其作为视图添加到LinearLayout。

至于你的算法 - 它不起作用。 ListView不知道其任何项目的高度,除非它们当前在屏幕上。所以实际上不可能计算出来。

此外,您正在做的事情不会计算所有视图的高度 - 列表视图仅包含屏幕上项目的子项。他们在那些之间回收物品。因此,您的算法只会获得当前屏幕上项目的高度。