├── .gitignore ├── LICENSE.txt ├── README.md ├── app ├── .gitignore ├── build.gradle ├── gradle.properties ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── expandablepanel │ │ └── jorgecastilloprz │ │ └── com │ │ └── expandablepanel │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── Roboto-Light.ttf │ └── Roboto-Thin.ttf │ ├── java │ └── expandablepanel │ │ └── jorgecastilloprz │ │ └── com │ │ └── expandablepanel │ │ └── ui │ │ ├── activities │ │ └── MainActivity.java │ │ ├── components │ │ └── CircledImageView.java │ │ ├── fragments │ │ ├── BasicBehaviorFragment.java │ │ └── InverseBehaviorFragment.java │ │ └── utils │ │ └── FragmentTypes.java │ └── res │ ├── drawable-hdpi │ ├── daybackground.png │ ├── ic_drawer.png │ ├── ic_launcher.png │ └── nightbackground.png │ ├── drawable-mdpi │ ├── daybackground.png │ ├── ic_drawer.png │ ├── ic_launcher.png │ └── nightbackground.png │ ├── drawable-xhdpi │ ├── avatar.png │ ├── ic_drawer.png │ └── ic_launcher.png │ ├── drawable-xxhdpi │ ├── ic_drawer.png │ └── ic_launcher.png │ ├── drawable-xxxhdpi │ ├── daybackground.png │ └── nightbackground.png │ ├── layout │ ├── activity_main.xml │ ├── fragment_basic_behaviour.xml │ ├── fragment_basic_expanded_behaviour.xml │ ├── fragment_inverse_behaviour.xml │ ├── fragment_inverse_expanded_behaviour.xml │ └── navigation_drawer_item.xml │ ├── menu │ └── main.xml │ ├── raw │ ├── en_generic_rgb_wo_60.png │ ├── sample1.gif │ ├── sample2.gif │ ├── sample3.gif │ └── sample4.gif │ └── values │ ├── arrays.xml │ ├── color.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── gradle.properties ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── jorgecastilloprz │ │ └── expandablepanel │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── jorgecastilloprz │ │ └── expandablepanel │ │ ├── ExpandablePanelView.java │ │ ├── anim │ │ └── HeightAnimation.java │ │ ├── controllers │ │ ├── AnimationController.java │ │ └── strategy │ │ │ ├── AbstractAnimationStrategy.java │ │ │ ├── BasicAnimationStrategy.java │ │ │ └── InverseAnimationStrategy.java │ │ └── listeners │ │ └── ExpandableListener.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ └── values │ ├── attrs.xml │ └── strings.xml ├── maven_push.gradle └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/gradle.properties -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/androidTest/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/assets/Roboto-Light.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/assets/Roboto-Thin.ttf -------------------------------------------------------------------------------- /app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/activities/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/activities/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/components/CircledImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/components/CircledImageView.java -------------------------------------------------------------------------------- /app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/fragments/BasicBehaviorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/fragments/BasicBehaviorFragment.java -------------------------------------------------------------------------------- /app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/fragments/InverseBehaviorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/fragments/InverseBehaviorFragment.java -------------------------------------------------------------------------------- /app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/utils/FragmentTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/java/expandablepanel/jorgecastilloprz/com/expandablepanel/ui/utils/FragmentTypes.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/daybackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-hdpi/daybackground.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/nightbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-hdpi/nightbackground.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/daybackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-mdpi/daybackground.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/nightbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-mdpi/nightbackground.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-xhdpi/avatar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/daybackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-xxxhdpi/daybackground.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/nightbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/drawable-xxxhdpi/nightbackground.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_basic_behaviour.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/layout/fragment_basic_behaviour.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_basic_expanded_behaviour.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/layout/fragment_basic_expanded_behaviour.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_inverse_behaviour.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/layout/fragment_inverse_behaviour.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_inverse_expanded_behaviour.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/layout/fragment_inverse_expanded_behaviour.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/navigation_drawer_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/layout/navigation_drawer_item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /app/src/main/res/raw/en_generic_rgb_wo_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/raw/en_generic_rgb_wo_60.png -------------------------------------------------------------------------------- /app/src/main/res/raw/sample1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/raw/sample1.gif -------------------------------------------------------------------------------- /app/src/main/res/raw/sample2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/raw/sample2.gif -------------------------------------------------------------------------------- /app/src/main/res/raw/sample3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/raw/sample3.gif -------------------------------------------------------------------------------- /app/src/main/res/raw/sample4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/raw/sample4.gif -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/values/color.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/jorgecastilloprz/expandablepanel/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/androidTest/java/com/jorgecastilloprz/expandablepanel/ApplicationTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/jorgecastilloprz/expandablepanel/ExpandablePanelView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/java/com/jorgecastilloprz/expandablepanel/ExpandablePanelView.java -------------------------------------------------------------------------------- /library/src/main/java/com/jorgecastilloprz/expandablepanel/anim/HeightAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/java/com/jorgecastilloprz/expandablepanel/anim/HeightAnimation.java -------------------------------------------------------------------------------- /library/src/main/java/com/jorgecastilloprz/expandablepanel/controllers/AnimationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/java/com/jorgecastilloprz/expandablepanel/controllers/AnimationController.java -------------------------------------------------------------------------------- /library/src/main/java/com/jorgecastilloprz/expandablepanel/controllers/strategy/AbstractAnimationStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/java/com/jorgecastilloprz/expandablepanel/controllers/strategy/AbstractAnimationStrategy.java -------------------------------------------------------------------------------- /library/src/main/java/com/jorgecastilloprz/expandablepanel/controllers/strategy/BasicAnimationStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/java/com/jorgecastilloprz/expandablepanel/controllers/strategy/BasicAnimationStrategy.java -------------------------------------------------------------------------------- /library/src/main/java/com/jorgecastilloprz/expandablepanel/controllers/strategy/InverseAnimationStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/java/com/jorgecastilloprz/expandablepanel/controllers/strategy/InverseAnimationStrategy.java -------------------------------------------------------------------------------- /library/src/main/java/com/jorgecastilloprz/expandablepanel/listeners/ExpandableListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/java/com/jorgecastilloprz/expandablepanel/listeners/ExpandableListener.java -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /maven_push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorgeCastilloPrz/ExpandablePanel/HEAD/maven_push.gradle -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------