├── .gitignore ├── .idea ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── depth ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── florent37 │ │ └── depth │ │ ├── CustomShadow.java │ │ ├── container │ │ ├── DepthContainerFrameLayout.java │ │ ├── DepthContainerLinearLayout.java │ │ ├── DepthContainerRelativeLayout.java │ │ ├── DepthLayoutContainer.java │ │ └── core │ │ │ ├── DepthContainerManager.java │ │ │ └── DepthMotionHandler.java │ │ └── view │ │ ├── DepthFrameLayout.java │ │ ├── DepthLinearLayout.java │ │ ├── DepthRelativeLayout.java │ │ └── core │ │ ├── DepthLayout.java │ │ └── DepthManager.java │ └── res │ ├── drawable │ ├── round_soft_shadow.png │ └── shadow.9.png │ └── values │ └── attrs.xml ├── gradle.properties ├── gradle ├── bintray-android-v1.gradle ├── bintray-java-v1.gradle ├── install-v1.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── medias ├── auto.gif ├── finger.gif ├── finger.mp4 └── test.mp4 ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── florent37 │ │ └── depth │ │ └── sample │ │ ├── AutoAnimateActivity.java │ │ ├── FollowUserInputActivity.java │ │ └── MainActivity.java │ └── res │ ├── drawable-xxhdpi │ ├── actionbar_shadow.png │ ├── aura_gradient.png │ ├── aura_gradient_inner.png │ ├── foam.png │ ├── grunge.png │ ├── ic_forward.png │ ├── marker_1px.png │ ├── noise.png │ ├── noise_scratch.png │ ├── smoke.png │ ├── splash1.png │ ├── splash2.png │ ├── splash3.png │ ├── splash4.png │ ├── stones.png │ ├── sun.png │ ├── sun_aura.png │ ├── water.png │ ├── water_scene_background.9.png │ └── x_y.png │ ├── drawable-xxxhdpi │ ├── ic_menu.png │ └── mountains.png │ ├── drawable │ ├── animation_list.xml │ ├── circle_blue.xml │ ├── color1.xml │ ├── color2.xml │ ├── color3.xml │ ├── color4.xml │ ├── depth_circle.xml │ ├── homer.jpg │ └── material.png │ ├── layout │ ├── activity_auto_animate.xml │ ├── activity_follow_user_input.xml │ ├── activity_main.xml │ └── fake_item.xml │ ├── mipmap-xhdpi │ ├── custom_shadow.png │ ├── gradien1.png │ ├── gradien1circle.png │ ├── ic_launcher.png │ └── round_shadow.png │ ├── mipmap-xxhdpi │ ├── bear_1.png │ ├── bear_2.png │ ├── bear_white.png │ ├── gfx_water_sunny.png │ ├── gfx_wind_bears.png │ ├── ic_launcher.png │ ├── ic_previous.png │ └── tree.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/README.md -------------------------------------------------------------------------------- /depth/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /depth/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/build.gradle -------------------------------------------------------------------------------- /depth/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/proguard-rules.pro -------------------------------------------------------------------------------- /depth/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/CustomShadow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/CustomShadow.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/container/DepthContainerFrameLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/container/DepthContainerFrameLayout.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/container/DepthContainerLinearLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/container/DepthContainerLinearLayout.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/container/DepthContainerRelativeLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/container/DepthContainerRelativeLayout.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/container/DepthLayoutContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/container/DepthLayoutContainer.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/container/core/DepthContainerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/container/core/DepthContainerManager.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/container/core/DepthMotionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/container/core/DepthMotionHandler.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/view/DepthFrameLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/view/DepthFrameLayout.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/view/DepthLinearLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/view/DepthLinearLayout.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/view/DepthRelativeLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/view/DepthRelativeLayout.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/view/core/DepthLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/view/core/DepthLayout.java -------------------------------------------------------------------------------- /depth/src/main/java/com/github/florent37/depth/view/core/DepthManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/java/com/github/florent37/depth/view/core/DepthManager.java -------------------------------------------------------------------------------- /depth/src/main/res/drawable/round_soft_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/res/drawable/round_soft_shadow.png -------------------------------------------------------------------------------- /depth/src/main/res/drawable/shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/res/drawable/shadow.9.png -------------------------------------------------------------------------------- /depth/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/depth/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/bintray-android-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/gradle/bintray-android-v1.gradle -------------------------------------------------------------------------------- /gradle/bintray-java-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/gradle/bintray-java-v1.gradle -------------------------------------------------------------------------------- /gradle/install-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/gradle/install-v1.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/gradlew.bat -------------------------------------------------------------------------------- /medias/auto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/medias/auto.gif -------------------------------------------------------------------------------- /medias/finger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/medias/finger.gif -------------------------------------------------------------------------------- /medias/finger.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/medias/finger.mp4 -------------------------------------------------------------------------------- /medias/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/medias/test.mp4 -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | app.iml -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/github/florent37/depth/sample/AutoAnimateActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/java/com/github/florent37/depth/sample/AutoAnimateActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/com/github/florent37/depth/sample/FollowUserInputActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/java/com/github/florent37/depth/sample/FollowUserInputActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/com/github/florent37/depth/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/java/com/github/florent37/depth/sample/MainActivity.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/actionbar_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/actionbar_shadow.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/aura_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/aura_gradient.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/aura_gradient_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/aura_gradient_inner.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/foam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/foam.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/grunge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/grunge.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/ic_forward.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/marker_1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/marker_1px.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/noise.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/noise_scratch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/noise_scratch.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/smoke.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/splash1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/splash1.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/splash2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/splash2.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/splash3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/splash3.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/splash4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/splash4.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/stones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/stones.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/sun.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/sun_aura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/sun_aura.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/water.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/water_scene_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/water_scene_background.9.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/x_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxhdpi/x_y.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_menu.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable-xxxhdpi/mountains.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable/animation_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable/animation_list.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/circle_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable/circle_blue.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/color1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable/color1.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/color2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable/color2.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/color3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable/color3.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/color4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable/color4.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/depth_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable/depth_circle.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/homer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable/homer.jpg -------------------------------------------------------------------------------- /sample/src/main/res/drawable/material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/drawable/material.png -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_auto_animate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/layout/activity_auto_animate.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_follow_user_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/layout/activity_follow_user_input.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/fake_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/layout/fake_item.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/custom_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xhdpi/custom_shadow.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/gradien1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xhdpi/gradien1.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/gradien1circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xhdpi/gradien1circle.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/round_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xhdpi/round_shadow.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/bear_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xxhdpi/bear_1.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/bear_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xxhdpi/bear_2.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/bear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xxhdpi/bear_white.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/gfx_water_sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xxhdpi/gfx_water_sunny.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/gfx_wind_bears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xxhdpi/gfx_wind_bears.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_previous.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xxhdpi/tree.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Android-3D-Layout/HEAD/settings.gradle --------------------------------------------------------------------------------