Skip to content

[Deprecated] An android library that brings the expandable layout with various animation. You can include optional contents and use everywhere.

License

Notifications You must be signed in to change notification settings

AAkira/ExpandableLayout

Repository files navigation

Expandable Layout

An android library that brings the expandable layout with various animation. You can include optional contents and use everywhere.

Circle CIPlatformLanguageLicenseAndroid ArsenalAndroid Gems

Preview

Normal

ExpandableRelativeLayoutExpandableWeightLayout

Example

ExampleRecyclerViewExampleSearchExampleReadMore

Usage

ExpandableRelativeLayout

Usage

The expandableRelativeLayout doesn't work if child views change a size. You should use the ExpandableLinearLayout if there is a possibility.

Code

ExpandableRelativeLayoutexpandableLayout = (ExpandableRelativeLayout) findViewById(R.id.expandableLayout); // toggle expand, collapseexpandableLayout.toggle(); // expandexpandableLayout.expand(); // collapseexpandableLayout.collapse(); // move position of child viewexpandableLayout.moveChild(0); // move optional positionexpandableLayout.move(500); // set base position which is close positionexpandableLayout.setClosePosition(500);

Layout xml

add xmlns:app="http://schemas.android.com/apk/res-auto"

<com.github.aakira.expandablelayout.ExpandableRelativeLayout android:id="@+id/expandableLayout"android:layout_width="match_parent"android:layout_height="match_parent"app:ael_expanded="false"app:ael_duration="500"app:ael_interpolator="bounce"app:ael_orientation="vertical"> <TextViewandroid:id="@+id/text"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="sample" /> <TextViewandroid:layout_width="match_parent"android:layout_height="wrap_content"android:layout_below="@id/text"android:text="sample2" /> </com.github.aakira.expandablelayout.ExpandableRelativeLayout>

ExpandableLinearLayout

Usage

You should use the ExpandableLinearLayout if child views may change a size. For example, it gets and sets values from a server. And you should use this in recycler view.

Code

// resize expandable layoutExpandableLinearLayoutexpandableLayout = (ExpandableLinearLayout) findViewById(R.id.expandableLayout); child.setText("Sets text from a server"); expandableLayout.initLayout(); // Recalculate size of children// recycler view// you must set a ViewHolder#setIsRecyclable(false) and ExpandableLinearLayout#setInRecyclerView(true) @OverridepublicvoidonBindViewHolder(finalViewHolderholder, finalintposition){holder.setIsRecyclable(false); holder.expandableLinearLayout.setInRecyclerView(true)}

ExpandableWeightLayout

Usage

You should use this layout if you want to use weight attributes at expandable layout.

Code

ExpandableWeightLayoutexpandableLayout = (ExpandableWeightLayout) findViewById(R.id.expandableLayout); // toggle expand, collapseexpandableLayout.toggle(); // expandexpandableLayout.expand(); // collapseexpandableLayout.collapse();

Layout xml

add xmlns:app="http://schemas.android.com/apk/res-auto"

<LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"> <Viewandroid:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1"/> <com.github.aakira.expandablelayout.ExpandableWeightLayout android:id="@+id/expandableLayout"android:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="3"app:ael_duration="1000"app:ael_interpolator="anticipateOvershoot"> <ImageViewandroid:layout_width="match_parent"android:layout_height="wrap_content"android:layout_centerInParent="true"android:src="@drawable/sample" /> </com.github.aakira.expandablelayout.ExpandableWeightLayout> <Viewandroid:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1"/> </LinearLayout>

Listener

expandableLayout.setListener(newExpandableLayoutListener(){@OverridepublicvoidonAnimationStart(){} @OverridepublicvoidonAnimationEnd(){} // You can get notification that your expandable layout is going to open or close.// So, you can set the animation synchronized with expanding animation.@OverridepublicvoidonPreOpen(){} @OverridepublicvoidonPreClose(){} @OverridepublicvoidonOpened(){} @OverridepublicvoidonClosed(){} });
  • ExpandableLayoutListenerAdapter
  • You can set listeners only you need.
expandableLayout.setListener(newExpandableLayoutListenerAdapter(){@OverridepublicvoidonPreOpen(){} @OverridepublicvoidonPreClose(){} });

Attributes

attribute namedescription
ael_durationThe length of the expand or collapse animation
ael_expandedThe layout is expanded if you set true
ael_defaultChildIndexThe layout is expanded at index of child view. (Only ExpandableRelativeLayout)
ael_defaultPositionThe layout is expanded at the position. (Only ExpandableRelativeLayout)
ael_orientationThe orientation of animation(horizontal | vertical)
ael_interpolatorSets interpolator

Interpolator

You can use interpolator. It helps the layout animates easily.

Interpolatorvalue name of attribute
AccelerateDecelerateInterpolatoraccelerateDecelerate
AccelerateInterpolatoraccelerate
AnticipateInterpolatoranticipate
AnticipateOvershootInterpolatoranticipateOvershoot
BounceInterpolatorbounce
DecelerateInterpolatordecelerate
FastOutLinearInInterpolatorfastOutLinearIn
FastOutSlowInInterpolatorfastOutSlowIn
LinearInterpolatorlinear
LinearOutSlowInInterpolatorlinearOutSlowIn
OvershootInterpolatorovershoot

These are support interpolator. But a case that the expandable layout extends outside doesn't work. e.g. AnticipateInterpolator, AnticipateOvershootInterpolator, OvershootInterpolator I recommend you use such a interpolator for child views in the expandable layout.

  • Not support
  • CycleInterpolator
  • PathInterpolator

Setup

Gradle

Add the dependency in your build.gradle

buildscript{repositories{jcenter() } } dependencies{compile 'com.github.aakira:expandable-layout:1.6.0@aar' }

Author

Akira Aratani

  • Twitter
  • Mail

Other open source projects

License

Copyright (C) 2015 A.Akira 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. 

About

[Deprecated] An android library that brings the expandable layout with various animation. You can include optional contents and use everywhere.

Resources

License

Stars

Watchers

Forks

Packages

No packages published