├── .github ├── stale.yml └── workflows │ └── actions.yml ├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── render.experimental.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── _config.yml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── infideap │ │ └── drawerbehaviorexample │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── infideap │ │ │ └── drawerbehaviorexample │ │ │ ├── MainActivity.kt │ │ │ └── drawer │ │ │ ├── Advance3DDrawer1Activity.kt │ │ │ ├── AdvanceDrawer1Activity.kt │ │ │ ├── AdvanceDrawer2Activity.kt │ │ │ ├── AdvanceDrawer3Activity.kt │ │ │ ├── AdvanceDrawer4Activity.kt │ │ │ ├── AdvanceDrawer5Activity.kt │ │ │ ├── AdvanceDrawer6Activity.kt │ │ │ └── DefaultDrawerActivity.kt │ └── res │ │ ├── drawable-v21 │ │ ├── ic_menu_camera.xml │ │ ├── ic_menu_gallery.xml │ │ ├── ic_menu_manage.xml │ │ ├── ic_menu_send.xml │ │ ├── ic_menu_share.xml │ │ └── ic_menu_slideshow.xml │ │ ├── drawable │ │ ├── bgdrawer.jpg │ │ ├── ic_notifications_none_white_24dp.xml │ │ └── side_nav_bar.xml │ │ ├── layout │ │ ├── activity_advance1.xml │ │ ├── activity_advance2.xml │ │ ├── activity_advance3.xml │ │ ├── activity_advance4.xml │ │ ├── activity_advance5.xml │ │ ├── activity_advance6.xml │ │ ├── activity_advance_3d_1.xml │ │ ├── activity_default.xml │ │ ├── activity_main.xml │ │ ├── app_bar_default.xml │ │ ├── content_default.xml │ │ ├── content_notification.xml │ │ └── nav_header_main.xml │ │ ├── menu │ │ ├── activity_main_drawer.xml │ │ └── main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── drawables.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── infideap │ └── drawerbehaviorexample │ └── ExampleUnitTest.java ├── drawerbehavior ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── infideap │ │ └── drawerbehavior │ │ ├── Advance3DDrawerLayout.kt │ │ └── AdvanceDrawerLayout.kt │ └── res │ └── values │ ├── attrs.xml │ └── strings.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.github/workflows/actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/render.experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/render.experimental.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/_config.yml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/infideap/drawerbehaviorexample/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/androidTest/java/com/infideap/drawerbehaviorexample/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/infideap/drawerbehaviorexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/java/com/infideap/drawerbehaviorexample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/infideap/drawerbehaviorexample/drawer/Advance3DDrawer1Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/java/com/infideap/drawerbehaviorexample/drawer/Advance3DDrawer1Activity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer1Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer1Activity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer2Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer2Activity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer3Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer3Activity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer4Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer4Activity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer5Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer5Activity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer6Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/java/com/infideap/drawerbehaviorexample/drawer/AdvanceDrawer6Activity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/infideap/drawerbehaviorexample/drawer/DefaultDrawerActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/java/com/infideap/drawerbehaviorexample/drawer/DefaultDrawerActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/drawable-v21/ic_menu_camera.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/drawable-v21/ic_menu_gallery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/drawable-v21/ic_menu_manage.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/drawable-v21/ic_menu_send.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/drawable-v21/ic_menu_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/drawable-v21/ic_menu_slideshow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bgdrawer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/drawable/bgdrawer.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notifications_none_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/drawable/ic_notifications_none_white_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_advance1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/activity_advance1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_advance2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/activity_advance2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_advance3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/activity_advance3.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_advance4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/activity_advance4.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_advance5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/activity_advance5.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_advance6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/activity_advance6.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_advance_3d_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/activity_advance_3d_1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/activity_default.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/app_bar_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/app_bar_default.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/content_default.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/content_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/layout/nav_header_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/activity_main_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/menu/activity_main_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/values/drawables.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/infideap/drawerbehaviorexample/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/app/src/test/java/com/infideap/drawerbehaviorexample/ExampleUnitTest.java -------------------------------------------------------------------------------- /drawerbehavior/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /drawerbehavior/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/build.gradle -------------------------------------------------------------------------------- /drawerbehavior/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /drawerbehavior/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /drawerbehavior/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/gradlew -------------------------------------------------------------------------------- /drawerbehavior/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/proguard-rules.pro -------------------------------------------------------------------------------- /drawerbehavior/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /drawerbehavior/src/main/java/com/infideap/drawerbehavior/Advance3DDrawerLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/src/main/java/com/infideap/drawerbehavior/Advance3DDrawerLayout.kt -------------------------------------------------------------------------------- /drawerbehavior/src/main/java/com/infideap/drawerbehavior/AdvanceDrawerLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/src/main/java/com/infideap/drawerbehavior/AdvanceDrawerLayout.kt -------------------------------------------------------------------------------- /drawerbehavior/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /drawerbehavior/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/drawerbehavior/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiburagi/Drawer-Behavior/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':drawerbehavior' 2 | --------------------------------------------------------------------------------