• Stars
    star
    422
  • Rank 102,753 (Top 3 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created over 10 years ago
  • Updated over 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Android library for creating an expandable to full screen view inside a viewgroup composition.

Expandable Panel Android Library

Demo Screenshot 1 Demo Screenshot 2 Demo Screenshot 3 Demo Screenshot 4

Check ExpandablePanel Demo application on GooglePlay:
Get it on Google Play

Details

This Android library implements the expand by sliding logic for a top or a bottom view in a two children view composition. That's the default behaviour, but it allows you to set a different View as the expandable one, making this component support multiple views inside it. It supports Android SDK 2.1 (Eclair) as minimum.

ExpandablePanel library brings a custom view class called ExpandablePanelView to the final user. It implements the needed logic for integrating the expandable logic into your own Android application.

Custom Attributes

ExpandablePanel lib allows you to customize the following properties. Feel free to combine them to create cool user interfaces:

  • expandablepanel:completionPercent: % of the parent's height where you want the autocomplete animation to begin working.
  • expandablepanel:completeExpandAnimationSpeed: Speed for the autocomplete animation.
  • expandablepanel:completeShrinkAnimationSpeed: Speed for the autoshrink animation.
  • expandablepanel:beginExpanded: Use it if you need the topView to begin expanded. If that's your case, the view will play a bounce animation at start to inform the user about the hidden bottom view.
  • expandablepanel:bounceCount: Use it to set the number of times topView is going to play bounce animation when it begins expanded.
  • expandablepanel:invertBehavior: Use it to invert the panel's behaviour and make bottomView become the expandable one. You can combine it with any other custom attributes. Bounce animation will get inverted too when using this attr.
  • expandablepanel:animableViewId: Use it to assign an animable view using the view identifier if your ExpandablePanelView contains more than 2 child. This attribute is not mandatory, if you don't use it, first or second child (based on the expandablepanel:invertBehavior attribute) is going to be used as the animable view.
  • expandablepanel:autoAnimateOnClick: Use this one to enable automatic expanding or shrinking when user clicks on animable view.

Usage

In order to make it work, you will need to use ExpandablePanelView class into your Android XML Layout.

    1. Add ExpandablePanelView to the layout.
    1. Add two children views to the ExpandablePanelView XML element.
    1. ExpandablePanelView extends RelativeLayout, so you will need to give an android id to the top view and setup the android:below attribute in the bottom one.
    1. Set the xmlns:draggable_view="http://schemas.android.com/apk/res-auto" if you are going to use any of the cusom attributes.

Use ExpandableListener if you want your class to be able to get expandable callbacks. Following methods are offered to the user:

  • onExpandingStarted: Dispatched when the user starts expanding the view.
  • onExpandingFinished: Dispatched when autocomplete expanding animation is finished.
  • onShrinkStarted: Dispatched when the user starts shrinking the view.
  • onShrinkFinished: Dispatched when autocomplete shrinking animation is finished.
  • onExpandingTouchEvent: Dispatched meanwhile the user is dragging to expand or shrink the view. This one is very useful if you want to map touch coordinates to your class and be able to use them for creating cool combined animations.

Basic Usage

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:expandablepanel="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <com.jorgecastilloprz.expandablepanel.ExpandablePanelView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/darker_gray"
        expandablepanel:completionPercent="0.8"
        expandablepanel:completeExpandAnimationSpeed="150"
        expandablepanel:completeShrinkAnimationSpeed="200">

        <ImageView
            android:id="@+id/topLayout"
            android:layout_width="match_parent"
            android:layout_height="250dp"
            android:src="@drawable/nightbackground"
            android:scaleType="centerCrop"/>

        <ImageView
            android:background="@color/material_pink"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/topLayout"/>

    </com.jorgecastilloprz.expandablepanel.ExpandablePanelView>

</RelativeLayout>

Begin Expanded Usage:

<com.jorgecastilloprz.expandablepanel.ExpandablePanelView
        android:id="@+id/expandablePanelView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/darker_gray"
        expandablepanel:completionPercent="0.8"
        expandablepanel:completeExpandAnimationSpeed="150"
        expandablepanel:completeShrinkAnimationSpeed="200"
        expandablepanel:beginExpanded="true"
        expandablepanel:bounceCount="2">

    <ImageView
        android:id="@+id/topLayout"
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:src="@drawable/nightbackground"
        android:scaleType="centerCrop"/>

    <ImageView
        android:background="@color/material_pink"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/topLayout"/>
    
</com.jorgecastilloprz.expandablepanel.ExpandablePanelView>

Invert Behaviour Usage:

  • You will need to remove android:layout_below from bottomView and add android:layout_above to the top one, in order to make Android capable of setting fixed bottomView height before topView match_parent height.
  • You must set android:layout_alignParentBottom="true" in bottom view too.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:expandablepanel="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <com.jorgecastilloprz.expandablepanel.ExpandablePanelView
        android:id="@+id/expandablePanelView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/darker_gray"
        expandablepanel:completionPercent="0.8"
        expandablepanel:completeExpandAnimationSpeed="150"
        expandablepanel:completeShrinkAnimationSpeed="200"
        expandablepanel:invertBehavior="true">

        <RelativeLayout
            android:id="@+id/topLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_above="@+id/bottomLayout">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:weightSum="100">

                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="99"
                    android:src="@drawable/nightbackground"
                    android:scaleType="centerCrop"/>

                <View
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1"
                    android:background="@color/flat_orange_bright" />

            </LinearLayout>

            <expandablepanel.jorgecastilloprz.com.expandablepanel.ui.components.CircledImageView
                android:id="@+id/avatar"
                android:layout_width="100dp"
                android:layout_height="100dp"
                android:src="@drawable/avatar"
                android:layout_centerInParent="true"/>


        </RelativeLayout>

        <ImageView
            android:id="@+id/bottomLayout"
            android:layout_width="match_parent"
            android:layout_height="300dp"
            android:src="@drawable/daybackground"
            android:scaleType="centerCrop"
            android:layout_alignParentBottom="true"/>

    </com.jorgecastilloprz.expandablepanel.ExpandablePanelView>

</RelativeLayout>

Import ExpandablePanel dependency

Add the next code to your build.gradle project dependencies:

dependencies {
    compile 'com.github.jorgecastilloprz:expandablepanel:1.0.4@aar'
}

Set the mavenCentral repo into the external build.gradle:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.12.+'
    }
}

allprojects {
    repositories {
        mavenCentral()
    }
}

If you are using Maven, use the following code:

<dependency>
  <groupId>com.github.jorgecastilloprz</groupId>
  <artifactId>expandablepanel</artifactId>
  <version>1.0.4</version>
  <type>aar</type>
</dependency>

Developer

License

Copyright 2014 Jorge Castillo Pérez

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

More Repositories

1

AndroidFillableLoaders

Android fillable progress view working with SVG paths. This is a nice option too if you want to create an interesting branding logo for your app. Based on the iOS project: https://github.com/poolqf/FillableLoaders
Java
1,996
star
2

FABProgressCircle

Material progress circle around any FloatingActionButton. 100% Guidelines.
Java
1,250
star
3

ArrowAndroidSamples

Functional Programing Android architecture using http://arrow-kt.io/
Kotlin
426
star
4

hiroaki

Write idiomatic API integration tests using Kotlin (Unit and Instrumentation)
Kotlin
370
star
5

AndroidColorX

AndroidColorX is a library to provide color utilities as Kotlin extension functions.
Kotlin
316
star
6

Dagger2Scopes

Dagger 2 sample app implementing multiple scopes. Clean arquitecture.
Java
152
star
7

AndroidKodeinSample

Android Scoped DI using Kodein. Sample repo for https://caster.io/
Kotlin
68
star
8

Corleone

Java annotation processor to dispatch and concatenate background tasks through a simple syntax.
Java
46
star
9

ScalaForTheImpatient

Project created to learn Scala basics by solving all the scala exercises proposed by the book.
Scala
27
star
10

ComposeFillableLoaders

Port of AndroidFillableLoaders library to Jetpack Compose.
Kotlin
19
star
11

ShenronAPI

Dragon Ball character rest API written in Scala using Play framework
Scala
13
star
12

JetpackComposeAndInternals

The ultimate Jetpack Compose online course. Created and delivered by Jorge Castillo.
JavaScript
13
star
13

Lifecolors

Android camera app to pick colors by clicking on the image and infer complimentary color palettes.
Kotlin
9
star
14

ComposeConstraintLayoutSamples

Backup repo for a series of posts in https://jorgecastillo.dev
Kotlin
7
star
15

GetAPet

Pet adoption Android app currently under active development.
Kotlin
6
star
16

ConwaysGameOfLife

An implementation of Conway's Game of Life in Kotlin using Arrow
Kotlin
6
star
17

FlutterFabLoader

Flutter loading spinner to wrap a FloatingActionButton.
Dart
5
star
18

android-dev-challenge-compose

Android Dev Challenge Week 2
Kotlin
4
star
19

jorgecastilloprz.github.io

Personal blog https://jorgecastillo.dev
CSS
3
star
20

AndroidLintDocs

Gather all the possible knowledge about Android Lint in a single place.
Kotlin
3
star
21

DigitalNomadWallpapers

Flutter sample app gathering digital nomad, remote work and developer desktop setup wallpapers
Dart
2
star
22

LibGDXSampleGame

Sample game playground using LibGDK
Kotlin
2
star
23

ElectronSample

Basics on how to prepare the environment to build electron apps
JavaScript
2
star
24

SupportFragmentLifecycleTests

Basic lifecycle test project to double check some lifecycle calls ordering when a support fragment is replaced.
Kotlin
1
star