├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── wkp │ │ └── expandview │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── wkp │ │ │ └── expandview │ │ │ ├── MainActivity.java │ │ │ └── ViewHolder.java │ └── res │ │ ├── drawable │ │ ├── expand01.gif │ │ ├── expand02.gif │ │ └── text_bg.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── item_lv.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 │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── wkp │ └── expandview │ └── ExampleUnitTest.java ├── expandview-lib ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── wkp │ │ └── expandview_lib │ │ ├── util │ │ └── ViewUtil.java │ │ └── view │ │ └── ExpandView.java │ └── res │ ├── drawable-hdpi │ └── ic_more.png │ ├── 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 │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/wkp/expandview/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/androidTest/java/com/wkp/expandview/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/wkp/expandview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/java/com/wkp/expandview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/wkp/expandview/ViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/java/com/wkp/expandview/ViewHolder.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/expand01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/drawable/expand01.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable/expand02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/drawable/expand02.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable/text_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/drawable/text_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/layout/item_lv.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/wkp/expandview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/app/src/test/java/com/wkp/expandview/ExampleUnitTest.java -------------------------------------------------------------------------------- /expandview-lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/.gitignore -------------------------------------------------------------------------------- /expandview-lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/build.gradle -------------------------------------------------------------------------------- /expandview-lib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/proguard-rules.pro -------------------------------------------------------------------------------- /expandview-lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /expandview-lib/src/main/java/com/wkp/expandview_lib/util/ViewUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/java/com/wkp/expandview_lib/util/ViewUtil.java -------------------------------------------------------------------------------- /expandview-lib/src/main/java/com/wkp/expandview_lib/view/ExpandView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/java/com/wkp/expandview_lib/view/ExpandView.java -------------------------------------------------------------------------------- /expandview-lib/src/main/res/drawable-hdpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/drawable-hdpi/ic_more.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /expandview-lib/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /expandview-lib/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /expandview-lib/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /expandview-lib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /expandview-lib/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/expandview-lib/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkp111/ExpandView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':expandview-lib' 2 | --------------------------------------------------------------------------------