├── bin ├── classes.dex ├── resources.ap_ ├── GooglePlayLikeAnimation.apk ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ └── drawable-xhdpi │ │ └── ic_launcher.png ├── jarlist.cache └── classes │ └── com │ └── krish │ └── animation │ └── demo │ ├── R.class │ ├── R$id.class │ ├── R$attr.class │ ├── R$drawable.class │ ├── R$layout.class │ ├── R$string.class │ ├── BuildConfig.class │ ├── R$styleable.class │ ├── ExpandablePanel.class │ ├── ExpandablePanel$PanelToggler.class │ ├── ExpandablePanel$ExpandAnimation.class │ ├── ExpandablePanel$OnExpandListener.class │ ├── GooglePlayLikeAnimationActivity.class │ ├── GooglePlayLikeAnimationActivity$1.class │ └── ExpandablePanel$DefaultOnExpandListener.class ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── values │ ├── strings.xml │ └── attrs.xml └── layout │ └── main.xml ├── README.md ├── gen └── com │ └── krish │ └── animation │ └── demo │ ├── BuildConfig.java │ └── R.java ├── project.properties ├── AndroidManifest.xml ├── proguard-project.txt └── src └── com └── krish └── animation └── demo ├── GooglePlayLikeAnimationActivity.java └── ExpandablePanel.java /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /bin/GooglePlayLikeAnimation.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/GooglePlayLikeAnimation.apk -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependecy. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ExpandableLayout 2 | ================ 3 | 4 | Expand like something similar to less and more action of description of app in Google Play . 5 | -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/R.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/ExpandablePanel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/ExpandablePanel.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/ExpandablePanel$PanelToggler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/ExpandablePanel$PanelToggler.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/ExpandablePanel$ExpandAnimation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/ExpandablePanel$ExpandAnimation.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/ExpandablePanel$OnExpandListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/ExpandablePanel$OnExpandListener.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/GooglePlayLikeAnimationActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/GooglePlayLikeAnimationActivity.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/GooglePlayLikeAnimationActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/GooglePlayLikeAnimationActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/krish/animation/demo/ExpandablePanel$DefaultOnExpandListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnalalstha/ExpandableLayout/HEAD/bin/classes/com/krish/animation/demo/ExpandablePanel$DefaultOnExpandListener.class -------------------------------------------------------------------------------- /gen/com/krish/animation/demo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.krish.animation.demo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World, AndroidExpanAnimationActivity! 5 | AndroidExpanAnimation 6 | 7 | -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-8 15 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 12 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /src/com/krish/animation/demo/GooglePlayLikeAnimationActivity.java: -------------------------------------------------------------------------------- 1 | package com.krish.animation.demo; 2 | 3 | 4 | import android.app.Activity; 5 | import android.os.Bundle; 6 | import android.view.View; 7 | import android.widget.Button; 8 | 9 | public class GooglePlayLikeAnimationActivity extends Activity { 10 | /** Called when the activity is first created. */ 11 | @Override 12 | public void onCreate(Bundle savedInstanceState) { 13 | super.onCreate(savedInstanceState); 14 | setContentView(R.layout.main); 15 | ExpandablePanel panel = (ExpandablePanel) findViewById(R.id.foo); 16 | 17 | panel.setOnExpandListener(new ExpandablePanel.OnExpandListener() { 18 | public void onCollapse(View handle, View content) { 19 | Button btn = (Button) handle; 20 | btn.setText("More"); 21 | } 22 | 23 | public void onExpand(View handle, View content) { 24 | Button btn = (Button) handle; 25 | btn.setText("Less"); 26 | } 27 | }); 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 13 | 14 | 23 | 24 | 27 | 28 | 33 | 34 |