博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android ExpandableGridView的实现
阅读量:4965 次
发布时间:2019-06-12

本文共 2125 字,大约阅读时间需要 7 分钟。

近期在做项目的时候碰到了这样一个布局

 

 

 

在android中有种实现折叠list方式是ExpandableListView  但是官方没有ExpandableGridView 

那么怎么样用ExpandableListView来实现一个ExpandableGridView呢

 

大概的原理是:在每个ExpandableListView 中显示一行,用这行来加载一个GridView

口说无凭,贴上代码

1.加载一个ExpandableListView

private SimpleDataAdapter simpleDataAdapter; private ExpandableListView mexpandableListview;        mexpandableListview = (ExpandableListView) findViewById(R.id.expandablelist);        mSuperAdapter = new SuperveseDataExpandableAdapter(this,mSuperveseData);        mexpandableListview.setAdapter(mSuperAdapter);        mexpandableListview.expandGroup(0);  

  2.重写BaseExpandableListAdapter

重写BaseExpandableListAdapter,主要是重写getChildView方法 加载一个GridView 动态的计算GridView 高度

@Override    public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {        if (convertView == null) {            convertView = layoutInflater.inflate(R.layout.view, null);        }        CustomGridView gridView = (CustomGridView) convertView .findViewById(R.id.GridView_toolbar);        gridView.setNumColumns(2);        gridView.setHorizontalSpacing(10);        gridView.setGravity(Gravity.CENTER);        GridAdapter adapter = new GridAdapter(context, superveseDatas.get(groupPosition).controlDatas);        gridView.setAdapter(adapter);// Adapter        int totalHeight = 0;       for (int size = 0; size < adapter.getCount(); size++) {            RelativeLayout relativeLayout = (RelativeLayout) adapter.getView(size, null, gridView);            TextView textView = (TextView) relativeLayout.getChildAt(0);            textView.measure(0, 0);            totalHeight += textView.getMeasuredHeight()*2;            if(size == adapter.getCount() -1){                if (size%2 == 0 ){                    totalHeight += textView.getMeasuredHeight()*2;                }            }        }        gridView.SetHeight(totalHeight);        return convertView;    }

  另外一个地方也需要注意下:

getChildrenCount返回1 因为用一个Item 来加载GridView
@Override    public int getChildrenCount(int groupPosition) {        return  1;    }

  

 

最后实现的效果如下

 

 

 

转载于:https://www.cnblogs.com/huwei0814/p/4461584.html

你可能感兴趣的文章
Java框架之Mybatis(二)
查看>>
angular复选框式js树形菜单(二)
查看>>
java基础(第三章课后作业)04
查看>>
自定义ClassLoader
查看>>
用python发邮件实例
查看>>
Python基础-包
查看>>
oss文件删除策略
查看>>
HDU 1058 Humble Numbers(dp)
查看>>
LeetCode 251. Flatten 2D Vector
查看>>
LeetCode Shortest Unsorted Continuous Subarray
查看>>
(转载)Java多线程入门理解
查看>>
用JS打开新窗口,防止被浏览器阻止的方法
查看>>
自我介绍
查看>>
数据库实例练习
查看>>
mybatis中sql片段
查看>>
Ubuntu下安装Android Studio全过程(2015.01.27)
查看>>
ABAP术语-Company Code
查看>>
学习笔记:弧度和角度转换的定义以及转换方法
查看>>
shell中的数值运算
查看>>
23种设计模式之六(工厂模式)
查看>>