Skip to content

通过ExpandableListView实现京东购物车并支持自动下拉刷新

Notifications You must be signed in to change notification settings

emsm-chentao/ExpandableListViewExample-master

Repository files navigation

ExpandableListViewExample-master

##简介

通过ExpandableListView实现京东购物车并支持自动下拉刷新

##使用

引用, AndroidStudio使用Gradle构建添加依赖(推荐)

  • compile 'com.facebook.fresco:fresco:0.9.0'

  • compile 'com.zhy:autolayout:1.4.5'

    使用到的第三方框架

  • Fresco 图片加载缓存框架

  • AndroidAutoLayout 屏幕适配框架

demo演示 demo演示 demo演示 demo演示 demo演示

####1. 如果子条目需要响应click事件,必需返回true

    @Override
    public boolean isChildSelectable(int groupPosition, int childPosition) {
        return true;
    }

####2. 去除掉默认的关闭和打开状态的图片(系统默认的不好看)

android:groupIndicator="@null"

####3. 解决无法正常展开问题

//HorizontalScrollView
hsv_goods_list.setFocusable(false)

About

通过ExpandableListView实现京东购物车并支持自动下拉刷新

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages