1

为了增加列表视图的高度,我使用可扩展的 ListView 作为,

public class ExpandableListView extends ListView {

    private android.view.ViewGroup.LayoutParams params;
    private int old_count = 0;

    public ExpandableListView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        if (getCount() != old_count) {
            old_count = getCount();
            params = getLayoutParams();
            params.height = getCount() * (old_count > 0 ? getChildAt(0).getHeight() : 0);
            System.out.println("params h "+params.height+" "+params);
            setLayoutParams(params);
        }

        super.onDraw(canvas);
    }

}

layout.xml 作为,

<com.jems.realtimedata.ExpandableListView
                android:id="@+id/listView1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"      
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp"
                android:layout_marginTop="25dp"
                android:background="@color/list_back"
                android:cacheColorHint="#00000000"
                android:divider="@drawable/line"
                android:paddingLeft="7dp"
                android:paddingRight="7dp"
                android:paddingTop="10dp"
                android:scrollbars="none" />

但是,列表的最后一项没有正确显示。我也使用了实用程序类,但列表没有变化。扩展视图的任何其他解决方案。请帮我解决这个问题。

4

2 回答 2

2

换线

params.height = getCount() * (old_count > 0 ? getChildAt(0).getHeight() : 0);

对此:

params.height = getCount() * (old_count > 0 ? getChildAt(0).getHeight() + 1 : 0);

这仅适用于具有单行项目的列表。

于 2013-11-21T08:32:34.190 回答
1

这个问题已经发布了。所以看看这个,你可以根据你的需要在 Expandable list 中自定义它

此链接将帮助您:

如何在 Android 中动态更改 ListView 高度?

于 2012-09-28T06:18:31.017 回答