【实例简介】
Android ExpandableListView双层嵌套实现三级树形菜单demo示例
【实例截图】
【核心代码】
60761427-83bf-421d-bc9c-e6b5f937441a
└── Tree
├── AndroidManifest.xml
├── bin
│ ├── AndroidManifest.xml
│ ├── classes
│ │ └── com
│ │ └── heng
│ │ └── tree
│ │ ├── adapter
│ │ │ ├── ChildAdapter$ChildHolder.class
│ │ │ ├── ChildAdapter$GroupHolder.class
│ │ │ ├── ChildAdapter.class
│ │ │ ├── CListAdapter$Holder.class
│ │ │ ├── CListAdapter.class
│ │ │ ├── ParentAdapter$1.class
│ │ │ ├── ParentAdapter$2.class
│ │ │ ├── ParentAdapter$3.class
│ │ │ ├── ParentAdapter$GroupHolder.class
│ │ │ ├── ParentAdapter$OnChildTreeViewClickListener.class
│ │ │ └── ParentAdapter.class
│ │ ├── BuildConfig.class
│ │ ├── entity
│ │ │ ├── ChildEntity.class
│ │ │ └── ParentEntity.class
│ │ ├── MainActivity.class
│ │ ├── R$attr.class
│ │ ├── R$dimen.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$layout.class
│ │ ├── R$string.class
│ │ └── R.class
│ ├── classes.dex
│ ├── dexedLibs
│ │ └── android-support-v4-6d5d7454723909d64d451085d40a379c.jar
│ ├── jarlist.cache
│ ├── res
│ │ └── crunch
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ └── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── resources.ap_
│ └── Tree.apk
├── gen
│ └── com
│ └── heng
│ └── tree
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── libs
│ └── android-support-v4.jar
├── proguard-project.txt
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ ├── activity_main.xml
│ │ ├── child_child_item.xml
│ │ ├── child_group_item.xml
│ │ └── parent_group_item.xml
│ ├── values
│ │ ├── dimens.xml
│ │ └── strings.xml
│ └── values-w820dp
│ └── dimens.xml
└── src
└── com
└── heng
└── tree
├── adapter
│ ├── ChildAdapter.java
│ ├── CListAdapter.java
│ └── ParentAdapter.java
├── entity
│ ├── ChildEntity.java
│ └── ParentEntity.java
└── MainActivity.java
34 directories, 56 files