├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── ZoomableTextureView.iml ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── ua │ │ └── polohalo │ │ └── zoomabletextureview │ │ └── sample │ │ ├── ExoPlayerActivity.java │ │ ├── ExoPlayerViewActivity.java │ │ ├── MainActivity.java │ │ ├── MediaPlayerActivity.java │ │ └── ZoomableExoPlayerView.java │ └── res │ ├── layout │ ├── activity_exoplayerview.xml │ ├── activity_main.xml │ └── activity_textureview.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── example.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib ├── .gitignore ├── build.gradle ├── lib.iml ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── ua │ │ └── polohalo │ │ └── zoomabletextureview │ │ └── ZoomableTextureView.java │ └── res │ └── values │ ├── attrs.xml │ └── strings.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/README.md -------------------------------------------------------------------------------- /ZoomableTextureView.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/ZoomableTextureView.iml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.idea 3 | *.iml -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/ua/polohalo/zoomabletextureview/sample/ExoPlayerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/java/ua/polohalo/zoomabletextureview/sample/ExoPlayerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/ua/polohalo/zoomabletextureview/sample/ExoPlayerViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/java/ua/polohalo/zoomabletextureview/sample/ExoPlayerViewActivity.java -------------------------------------------------------------------------------- /app/src/main/java/ua/polohalo/zoomabletextureview/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/java/ua/polohalo/zoomabletextureview/sample/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/ua/polohalo/zoomabletextureview/sample/MediaPlayerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/java/ua/polohalo/zoomabletextureview/sample/MediaPlayerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/ua/polohalo/zoomabletextureview/sample/ZoomableExoPlayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/java/ua/polohalo/zoomabletextureview/sample/ZoomableExoPlayerView.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_exoplayerview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/layout/activity_exoplayerview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_textureview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/layout/activity_textureview.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/example.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/lib/build.gradle -------------------------------------------------------------------------------- /lib/lib.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/lib/lib.iml -------------------------------------------------------------------------------- /lib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/lib/proguard-rules.pro -------------------------------------------------------------------------------- /lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/lib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lib/src/main/java/ua/polohalo/zoomabletextureview/ZoomableTextureView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/lib/src/main/java/ua/polohalo/zoomabletextureview/ZoomableTextureView.java -------------------------------------------------------------------------------- /lib/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/lib/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /lib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manuiq/ZoomableTextureView/HEAD/lib/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':lib' 2 | --------------------------------------------------------------------------------