可扩展的列表视图项目高度,其中包含另一个列表视图



我有一个ExpandableListView,其中每个组都有一个子组。每个子项都是另一个具有不同行数的ListView。展开状态下的ExpandableListView项高度存在问题,它没有包装到子ListView内容。我可以在子列表视图布局中设置一个具体的高度值。但是我想要一个ExpandableListView自动包装每个孩子。有可能吗?

getChildView((从我的ExpandableListAdapter:

public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
    if( convertView == null ) {
        LayoutInflater inflater = (LayoutInflater) getContext().getSystemService( Context.LAYOUT_INFLATER_SERVICE );
        convertView = inflater.inflate( R.layout.anit_object_data, parent, false );
    }
    ListView lv = (ListView)convertView.findViewById( R.id.listData );
    List<ListData> valuesList = getItems().get(groupPosition).getListData( getContext() );
    ListDataAdapter adapter = new ListDataAdapter( getContext(), android.R.layout.simple_list_item_1, valuesList );
    lv.setAdapter(adapter);
    return convertView;
}


用于子ListView:的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="wrap_content"
    android:orientation="vertical" >
    <LinearLayout
        android:id = "@+id/listHolder"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginBottom="10dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="40dp"
        android:layout_marginTop="10dp"
        android:layout_weight="1"
        android:orientation="horizontal" >
        <ListView
            android:id="@+id/listData"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:clickable="true"
            android:scrollbars="none" >
        </ListView>
    </LinearLayout>
</LinearLayout>



我试图在适配器的getChildView((中测量子ListView的高度,但ExpandableListView扩展项的高度仍然不正确。

public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
    if( convertView == null ) {
        LayoutInflater inflater = (LayoutInflater) getContext().getSystemService( Context.LAYOUT_INFLATER_SERVICE );
        convertView = inflater.inflate( R.layout.anit_object_data, parent, false );
    }
    ListView lv = (ListView)convertView.findViewById( R.id.listData );
    List<ListData> valuesList = getItems().get(groupPosition).getListData( getContext() );
    ListDataAdapter adapter = new ListDataAdapter( getContext(), android.R.layout.simple_list_item_1, valuesList );
    lv.setAdapter(adapter);
    lv.measure( MeasureSpec.EXACTLY, MeasureSpec.UNSPECIFIED );
    convertView.getLayoutParams().height = lv.getMeasuredHeight();
    return convertView;
}

好吧,我试过你的想法,组子视图是一个列表视图。但结果并不好。因为子视图(列表视图(的高度很难测量。因此,我以正常的方式更改了解决方案:子视图只是一个项目,就像列表视图的项目一样。因此,我们也覆盖了getChildView((方法。

你不需要t need a listview inside the expandablelist, it控制自己的子位置膨胀,你只需要通过其他列表并获得子位置

相关内容

  • 没有找到相关文章

最新更新