├── .gitignore ├── LICENSE ├── README.md ├── art ├── ExampleReadMore.gif ├── ExampleRecyclerview_v1.1.gif ├── ExampleSearch.gif ├── ExpandableRelativeLayout.gif └── ExpandableWeightLayout.gif ├── circle.yml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library-ui-test ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── aakira │ │ └── expandablelayout │ │ └── uitest │ │ ├── ExpandableLinearLayoutActivityTest.kt │ │ ├── ExpandableLinearLayoutActivityTest2.kt │ │ ├── ExpandableLinearLayoutActivityTest3.kt │ │ ├── ExpandableRecyclerViewActivityTest.kt │ │ ├── ExpandableRelativeLayoutActivityTest.kt │ │ ├── ExpandableRelativeLayoutActivityTest2.kt │ │ ├── ExpandableRelativeLayoutActivityTest3.kt │ │ ├── ExpandableWeightLayoutActivityTest.kt │ │ └── utils │ │ ├── ContextExt.kt │ │ ├── ElapsedIdLingResource.java │ │ └── ViewTestUtil.kt │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── github │ │ └── aakira │ │ └── expandablelayout │ │ └── uitest │ │ ├── ExpandableLinearLayoutActivity.kt │ │ ├── ExpandableLinearLayoutActivity2.kt │ │ ├── ExpandableLinearLayoutActivity3.kt │ │ ├── ExpandableRecyclerViewActivity.kt │ │ ├── ExpandableRelativeLayoutActivity.kt │ │ ├── ExpandableRelativeLayoutActivity2.kt │ │ ├── ExpandableRelativeLayoutActivity3.kt │ │ └── ExpandableWeightLayoutActivity.kt │ └── res │ ├── drawable │ ├── triangle.xml │ └── white.xml │ ├── layout │ ├── activity_expandable_linear_layout.xml │ ├── activity_expandable_linear_layout2.xml │ ├── activity_expandable_linear_layout3.xml │ ├── activity_expandable_recycler_view.xml │ ├── activity_expandable_relative_layout.xml │ ├── activity_expandable_relative_layout_2.xml │ ├── activity_expandable_relative_layout_3.xml │ ├── activity_expandable_weight_layout.xml │ └── recycler_view_list_row.xml │ ├── mipmap │ └── ic_launcher.png │ └── values │ ├── colors.xml │ ├── colors_material.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── library ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── aakira │ │ └── expandablelayout │ │ └── ExpandableSavedStateTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── aakira │ │ └── expandablelayout │ │ ├── ExpandableLayout.java │ │ ├── ExpandableLayoutListener.java │ │ ├── ExpandableLayoutListenerAdapter.java │ │ ├── ExpandableLinearLayout.java │ │ ├── ExpandableRelativeLayout.java │ │ ├── ExpandableSavedState.java │ │ ├── ExpandableWeightLayout.java │ │ └── Utils.java │ └── res │ └── values │ └── attrs.xml ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── jp │ │ └── android │ │ └── aakira │ │ └── sample │ │ └── expandablelayout │ │ ├── exampleexpanded │ │ └── ExampleReadMoreActivity.java │ │ ├── examplerecyclerview │ │ ├── ItemModel.java │ │ ├── RecyclerViewActivity.java │ │ └── RecyclerViewRecyclerAdapter.java │ │ ├── examplesearch │ │ ├── ExampleSearchActivity.java │ │ └── ExampleSearchRecyclerAdapter.java │ │ ├── expandablelayout │ │ └── ExpandableLayoutActivity.java │ │ ├── expandableweight │ │ └── ExpandableWeightActivity.java │ │ ├── main │ │ ├── MainActivity.java │ │ └── MainRecyclerAdapter.java │ │ └── util │ │ └── DividerItemDecoration.java │ └── res │ ├── drawable-v21 │ └── white.xml │ ├── drawable │ ├── triangle.xml │ └── white.xml │ ├── layout │ ├── activity_example_read_more.xml │ ├── activity_example_search.xml │ ├── activity_expandable_layout.xml │ ├── activity_expandable_weight.xml │ ├── activity_main.xml │ ├── activity_recycler_view.xml │ ├── recycler_view_list_row.xml │ └── simple_list_row.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── colors_material.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/README.md -------------------------------------------------------------------------------- /art/ExampleReadMore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/art/ExampleReadMore.gif -------------------------------------------------------------------------------- /art/ExampleRecyclerview_v1.1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/art/ExampleRecyclerview_v1.1.gif -------------------------------------------------------------------------------- /art/ExampleSearch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/art/ExampleSearch.gif -------------------------------------------------------------------------------- /art/ExpandableRelativeLayout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/art/ExpandableRelativeLayout.gif -------------------------------------------------------------------------------- /art/ExpandableWeightLayout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/art/ExpandableWeightLayout.gif -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/circle.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library-ui-test/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library-ui-test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/build.gradle -------------------------------------------------------------------------------- /library-ui-test/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/proguard-rules.pro -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivityTest.kt -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivityTest2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivityTest2.kt -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivityTest3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivityTest3.kt -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableRecyclerViewActivityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableRecyclerViewActivityTest.kt -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivityTest.kt -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivityTest2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivityTest2.kt -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivityTest3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivityTest3.kt -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableWeightLayoutActivityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/ExpandableWeightLayoutActivityTest.kt -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/utils/ContextExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/utils/ContextExt.kt -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/utils/ElapsedIdLingResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/utils/ElapsedIdLingResource.java -------------------------------------------------------------------------------- /library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/utils/ViewTestUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/androidTest/java/com/github/aakira/expandablelayout/uitest/utils/ViewTestUtil.kt -------------------------------------------------------------------------------- /library-ui-test/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivity.kt -------------------------------------------------------------------------------- /library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivity2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivity2.kt -------------------------------------------------------------------------------- /library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivity3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableLinearLayoutActivity3.kt -------------------------------------------------------------------------------- /library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableRecyclerViewActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableRecyclerViewActivity.kt -------------------------------------------------------------------------------- /library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivity.kt -------------------------------------------------------------------------------- /library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivity2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivity2.kt -------------------------------------------------------------------------------- /library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivity3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableRelativeLayoutActivity3.kt -------------------------------------------------------------------------------- /library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableWeightLayoutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/kotlin/com/github/aakira/expandablelayout/uitest/ExpandableWeightLayoutActivity.kt -------------------------------------------------------------------------------- /library-ui-test/src/main/res/drawable/triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/drawable/triangle.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/drawable/white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/drawable/white.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/layout/activity_expandable_linear_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/layout/activity_expandable_linear_layout.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/layout/activity_expandable_linear_layout2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/layout/activity_expandable_linear_layout2.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/layout/activity_expandable_linear_layout3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/layout/activity_expandable_linear_layout3.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/layout/activity_expandable_recycler_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/layout/activity_expandable_recycler_view.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/layout/activity_expandable_relative_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/layout/activity_expandable_relative_layout.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/layout/activity_expandable_relative_layout_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/layout/activity_expandable_relative_layout_2.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/layout/activity_expandable_relative_layout_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/layout/activity_expandable_relative_layout_3.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/layout/activity_expandable_weight_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/layout/activity_expandable_weight_layout.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/layout/recycler_view_list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/layout/recycler_view_list_row.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/mipmap/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/mipmap/ic_launcher.png -------------------------------------------------------------------------------- /library-ui-test/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/values/colors_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/values/colors_material.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /library-ui-test/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library-ui-test/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/github/aakira/expandablelayout/ExpandableSavedStateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/androidTest/java/com/github/aakira/expandablelayout/ExpandableSavedStateTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/github/aakira/expandablelayout/ExpandableLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/java/com/github/aakira/expandablelayout/ExpandableLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/aakira/expandablelayout/ExpandableLayoutListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/java/com/github/aakira/expandablelayout/ExpandableLayoutListener.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/aakira/expandablelayout/ExpandableLayoutListenerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/java/com/github/aakira/expandablelayout/ExpandableLayoutListenerAdapter.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/aakira/expandablelayout/ExpandableLinearLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/java/com/github/aakira/expandablelayout/ExpandableLinearLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/aakira/expandablelayout/ExpandableRelativeLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/java/com/github/aakira/expandablelayout/ExpandableRelativeLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/aakira/expandablelayout/ExpandableSavedState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/java/com/github/aakira/expandablelayout/ExpandableSavedState.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/aakira/expandablelayout/ExpandableWeightLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/java/com/github/aakira/expandablelayout/ExpandableWeightLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/aakira/expandablelayout/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/java/com/github/aakira/expandablelayout/Utils.java -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/exampleexpanded/ExampleReadMoreActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/exampleexpanded/ExampleReadMoreActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplerecyclerview/ItemModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplerecyclerview/ItemModel.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplerecyclerview/RecyclerViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplerecyclerview/RecyclerViewActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplerecyclerview/RecyclerViewRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplerecyclerview/RecyclerViewRecyclerAdapter.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplesearch/ExampleSearchActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplesearch/ExampleSearchActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplesearch/ExampleSearchRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/examplesearch/ExampleSearchRecyclerAdapter.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/expandablelayout/ExpandableLayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/expandablelayout/ExpandableLayoutActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/expandableweight/ExpandableWeightActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/expandableweight/ExpandableWeightActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/main/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/main/MainActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/main/MainRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/main/MainRecyclerAdapter.java -------------------------------------------------------------------------------- /sample/src/main/java/jp/android/aakira/sample/expandablelayout/util/DividerItemDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/java/jp/android/aakira/sample/expandablelayout/util/DividerItemDecoration.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable-v21/white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/drawable-v21/white.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/drawable/triangle.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/drawable/white.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_example_read_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/layout/activity_example_read_more.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_example_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/layout/activity_example_search.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_expandable_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/layout/activity_expandable_layout.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_expandable_weight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/layout/activity_expandable_weight.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_recycler_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/layout/activity_recycler_view.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/recycler_view_list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/layout/recycler_view_list_row.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/simple_list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/layout/simple_list_row.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/colors_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/values/colors_material.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AAkira/ExpandableLayout/HEAD/settings.gradle --------------------------------------------------------------------------------