├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── encodings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── hyc │ │ └── headzoomlayout │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── hyc │ │ │ └── headzoomlayout │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable │ │ ├── background.png │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_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 │ │ └── ttt.jpg │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── hyc │ └── headzoomlayout │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── headZoomLayout ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── hyc │ │ └── headzoomlayout │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── hyc │ │ │ └── headzoomlayout │ │ │ └── HeadZoomLayout.java │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── hyc │ └── headzoomlayout │ └── ExampleUnitTest.java ├── image ├── house_detail.gif ├── personal.gif ├── show.gif ├── show_video.png └── video.webm └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/hyc/headzoomlayout/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/androidTest/java/com/hyc/headzoomlayout/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/hyc/headzoomlayout/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/java/com/hyc/headzoomlayout/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ttt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-xxhdpi/ttt.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/hyc/headzoomlayout/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/app/src/test/java/com/hyc/headzoomlayout/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/gradlew.bat -------------------------------------------------------------------------------- /headZoomLayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /headZoomLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/headZoomLayout/build.gradle -------------------------------------------------------------------------------- /headZoomLayout/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/headZoomLayout/proguard-rules.pro -------------------------------------------------------------------------------- /headZoomLayout/src/androidTest/java/com/hyc/headzoomlayout/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/headZoomLayout/src/androidTest/java/com/hyc/headzoomlayout/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /headZoomLayout/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/headZoomLayout/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /headZoomLayout/src/main/java/com/hyc/headzoomlayout/HeadZoomLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/headZoomLayout/src/main/java/com/hyc/headzoomlayout/HeadZoomLayout.java -------------------------------------------------------------------------------- /headZoomLayout/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/headZoomLayout/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /headZoomLayout/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/headZoomLayout/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /headZoomLayout/src/test/java/com/hyc/headzoomlayout/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/headZoomLayout/src/test/java/com/hyc/headzoomlayout/ExampleUnitTest.java -------------------------------------------------------------------------------- /image/house_detail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/image/house_detail.gif -------------------------------------------------------------------------------- /image/personal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/image/personal.gif -------------------------------------------------------------------------------- /image/show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/image/show.gif -------------------------------------------------------------------------------- /image/show_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/image/show_video.png -------------------------------------------------------------------------------- /image/video.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-traveler/HeadZoomLayout/HEAD/image/video.webm -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':headZoomLayout' 2 | --------------------------------------------------------------------------------