├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── dictionaries │ └── cretin.xml ├── encodings.xml ├── gradle.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── qaplug_profiles.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── cretin │ │ └── www │ │ └── superexpandablelistview │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── cretin │ │ │ └── www │ │ │ └── superexpandablelistview │ │ │ ├── ChildModel.java │ │ │ ├── GroupModel.java │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable │ │ └── shape_expendable_listview.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── item_child.xml │ │ └── item_group.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── arrow_right.png │ │ ├── blue_down.png │ │ ├── down.png │ │ ├── expendable_listview_down.png │ │ ├── expendable_listview_right.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ ├── right.png │ │ └── timg.jpg │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── cretin │ └── www │ └── superexpandablelistview │ └── ExampleUnitTest.java ├── gif └── ezgif.com-video-to-gif.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/cretin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/dictionaries/cretin.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/qaplug_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/qaplug_profiles.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/cretin/www/superexpandablelistview/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/androidTest/java/com/cretin/www/superexpandablelistview/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/cretin/www/superexpandablelistview/ChildModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/java/com/cretin/www/superexpandablelistview/ChildModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/cretin/www/superexpandablelistview/GroupModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/java/com/cretin/www/superexpandablelistview/GroupModel.java -------------------------------------------------------------------------------- /app/src/main/java/com/cretin/www/superexpandablelistview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/java/com/cretin/www/superexpandablelistview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_expendable_listview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/drawable/shape_expendable_listview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_child.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/layout/item_child.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/layout/item_group.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxhdpi/arrow_right.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/blue_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxhdpi/blue_down.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxhdpi/down.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/expendable_listview_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxhdpi/expendable_listview_down.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/expendable_listview_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxhdpi/expendable_listview_right.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxhdpi/right.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxhdpi/timg.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/cretin/www/superexpandablelistview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/app/src/test/java/com/cretin/www/superexpandablelistview/ExampleUnitTest.java -------------------------------------------------------------------------------- /gif/ezgif.com-video-to-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/gif/ezgif.com-video-to-gif.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZCretin/SuperExpandableListView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------