├── .gitignore ├── LICENSE ├── README.md ├── edge-to-edge-decorator ├── .gitignore ├── build.gradle ├── library.properties └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── redmadrobot │ └── e2e │ └── decorator │ └── EdgeToEdgeDecorator.kt ├── gradle.properties ├── gradle ├── dependencies.gradle ├── publish.gradle ├── version.gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── sample_21_api.gif ├── sample_25_api.gif ├── sample_28_api.gif └── sample_30_api.gif ├── record_sample_screen.sh ├── sample ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── redmadrobot │ │ └── sample │ │ ├── BaseActivity.kt │ │ ├── MainActivity.kt │ │ └── SampleAdapter.kt │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── layout │ ├── activity_main.xml │ └── item_sample.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.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 │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/README.md -------------------------------------------------------------------------------- /edge-to-edge-decorator/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /edge-to-edge-decorator/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/edge-to-edge-decorator/build.gradle -------------------------------------------------------------------------------- /edge-to-edge-decorator/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/edge-to-edge-decorator/library.properties -------------------------------------------------------------------------------- /edge-to-edge-decorator/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /edge-to-edge-decorator/src/main/java/com/redmadrobot/e2e/decorator/EdgeToEdgeDecorator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/edge-to-edge-decorator/src/main/java/com/redmadrobot/e2e/decorator/EdgeToEdgeDecorator.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/gradle/dependencies.gradle -------------------------------------------------------------------------------- /gradle/publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/gradle/publish.gradle -------------------------------------------------------------------------------- /gradle/version.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/gradle/version.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/sample_21_api.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/images/sample_21_api.gif -------------------------------------------------------------------------------- /images/sample_25_api.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/images/sample_25_api.gif -------------------------------------------------------------------------------- /images/sample_28_api.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/images/sample_28_api.gif -------------------------------------------------------------------------------- /images/sample_30_api.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/images/sample_30_api.gif -------------------------------------------------------------------------------- /record_sample_screen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/record_sample_screen.sh -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/redmadrobot/sample/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/java/com/redmadrobot/sample/BaseActivity.kt -------------------------------------------------------------------------------- /sample/src/main/java/com/redmadrobot/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/java/com/redmadrobot/sample/MainActivity.kt -------------------------------------------------------------------------------- /sample/src/main/java/com/redmadrobot/sample/SampleAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/java/com/redmadrobot/sample/SampleAdapter.kt -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/item_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/layout/item_sample.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/edge-to-edge-decorator/HEAD/settings.gradle --------------------------------------------------------------------------------