Android使用ExpandableListview实现时间轴

背景

公司新项目中有一个功能要实现时间轴效果,网上也找了很多教程和Demo,但都不是我想要的,大部分用的是RecyclerView实现的,但这些都是一层的数据结构,但我需要的是两层的结构,用RecyclerView应该也可以实现这种效果,但是结合后台返回的数据,用RecyclerView实现可能有些麻烦,最终我选择了使用ExpandableListview实现两层结构的时间轴效果,下面是做好的效果图:

Screenshot_2017-02-20-14-39-28-319.jpeg

分析

代码很简单,和普通用ExpandableListView一样,没什么特别的,需要注意的是布局的结构。从上面的效果图可以看出,group布局中应该包含这些控件:显示年月的圆形,圆形上方的line和圆形下方的line,其他的就是child布局中的内容了,需要注意的最右侧也是一个动态数据的view,即listview之类的可以动态添加数据的,但是如果要用listview的话,这就会牵扯出来一个亘古久远的问题listview嵌套问题,我们这里等于是在ExpandableListView的child中嵌套listview,注意要想让listview完全伸展就需要重新listview的onMeasure方法,像下面这样:

public class ListViewForScrollView extends ListView {
    public ListViewForScrollView(Context context) {
        super(context);
    }
    public ListViewForScrollView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
    public ListViewForScrollView(Context context, AttributeSet attrs,
                                 int defStyle) {
        super(context, attrs, defStyle);
    }
    @Override
    /**
     * 重写该方法,达到使ListView适应ScrollView的效果
     */
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
                MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, expandSpec);
    }
}

这是我之前一直在用的方法,但是这样的话带来的问题就是listview的item不能复用而且adapter里面的getView方法会执行很多遍,这无疑是非常浪费性能的,数据多或者布局复杂就会很卡顿,所以今天我们不再用这样的方法了,而是用LinearLayout来实现,这个在下面我们再详细说明,接着分析我们的布局结构,child中以那个小圆view开始,它上边和右边各有一个line,这样child上方的line就可以和group下方的line连接在一起,child上方的line也可以和上一个child中的小圆view连接子在一起,child布局中的小圆和line我是使用LinearLayout和margin来控制对齐的,这样右侧显示动态数据的view就可以根据内容自动填充高度,当然也可以使用其他布局的方式实现。下面是item布局的代码:

group布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical">

    <LinearLayout
        android:layout_marginLeft="25dp"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/item_group_top_line"
            android:background="@color/mine_font_little"
            android:layout_width="0.5dp"
            android:layout_height="50dp"/>

        <TextView
            android:id="@+id/item_group_year_month"
            android:gravity="center"
            tools:text="1月\n2017"
            android:textColor="@android:color/white"
            android:background="@drawable/shape_orange_circle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

        <TextView
            android:id="@+id/item_group_bottom_line"
            android:background="@color/mine_font_little"
            android:layout_width="0.5dp"
            android:layout_height="match_parent"/>

    </LinearLayout>


</FrameLayout>

child布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools">
    <LinearLayout
        android:gravity="center_horizontal"
        android:orientation="horizontal"
        android:layout_marginLeft="47dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:orientation="vertical"
            android:minHeight="50dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:orientation="horizontal"
                android:layout_weight="1"
                android:layout_width="match_parent"
                android:layout_height="0dp">

                <TextView
                    android:id="@+id/item_child_v_line"
                    android:layout_marginLeft="5dp"
                    android:background="@color/mine_font_little"
                    android:layout_width="0.5dp"
                    android:layout_height="match_parent"/>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">

                    <TextView
                        android:id="@+id/item_child_month_day"
                        android:layout_marginLeft="10dp"
                        android:layout_marginBottom="5dp"
                        tools:text="1月9日"
                        android:layout_gravity="bottom"
                        android:textSize="16sp"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content" />

                    <cn.demo.timeline.fulllistview.NestFullListView
                        android:id="@+id/item_child_lv"
                        android:layout_marginLeft="5dp"
                        android:layout_marginBottom="5dp"
                        android:minHeight="50dp"
                        android:orientation="vertical"
                        android:gravity="bottom"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"/>

                </LinearLayout>

            </LinearLayout>

            <LinearLayout
                android:orientation="horizontal"
                android:gravity="center_vertical"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <TextView
                    android:id="@+id/item_child_circle"
                    android:background="@drawable/shape_little_orange_circle"
                    android:layout_width="10dp"
                    android:layout_height="10dp"/>

                <TextView
                    android:id="@+id/item_child_r_line"
                    android:background="@color/mine_font_little"
                    android:layout_width="match_parent"
                    android:layout_height="0.5dp"/>

            </LinearLayout>

        </LinearLayout>

    </LinearLayout>


</FrameLayout>

在child布局中看到有个NestFullListView,这个就是上面我们说的使用LinearLayout实现的伸展ListView,通过继承LinearLayout,向布局中动态addView来实现,做了类似ListView的adapter和ViewHolder封装,使用起来特别方便,只需几行代码:

childHolder.itemChildLv.setAdapter(new NestFullListViewAdapter<TimeLine.RowsBean.DaylistBean.DatalistBean>(R.layout.item_child_timeline_data,daylistBean.getDatalist()) {
                @Override
                public void onBind(int pos, TimeLine.RowsBean.DaylistBean.DatalistBean datalistBean, NestFullViewHolder holder) {
                    holder.setText(R.id.item_child_sr_name,datalistBean.getName());
                    holder.setText(R.id.item_child_sr_progress,datalistBean.getProgress() + "%");
                }
            });

其中的itemChildLv就是NestFullListView,给它设置一个adapter,adapter指定了数据类型,再给adapter传入item布局的id和数据,通过回调函数onBind,设置指定控件的值就可以了,是不是很方便呢!这么方便的东西当然要分享给大家了,下面是作者的详细介绍:
NestFullListView

然后呢.....然后就没有了,对,就这么简单!!!
最后附上项目的github地址:

TimeLineDemo

喜欢的麻烦动动小手点个赞来支持我,有不对的地方欢迎大家指正,有什么问题也可以在下方留言,我看到后会第一时间回复!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,443评论 25 707
  • afinalAfinal是一个android的ioc,orm框架 https://github.com/yangf...
    passiontim阅读 15,396评论 2 45
  • 你是不是经常易怒?是不是外界的某些因素会顷刻间影响到你的心情,是不是会动不动就抱怨?当某一些事情没有达到你预想的结...
    潇漠阅读 502评论 0 2
  • 远在千里之遥的你问我,今年最后一天我有什么愿望。 我的愿望从今年第一天到最后一天都是同一个:我想念你想念你想念你,...
    南歌子吟阅读 421评论 9 8
  • 啊啦
    苹果换机服务中心阅读 142评论 0 0