项目作者: Manuiq

项目描述 :
Adding zoom and scroll gestures to video playback on Android
高级语言: Java
项目地址: git://github.com/Manuiq/ZoomableTextureView.git
创建时间: 2015-08-24T23:43:58Z
项目社区:https://github.com/Manuiq/ZoomableTextureView

开源协议:

下载


ZoomableTextureView

Enables pinch to zoom and scroll gestures on video while it’s playing. Can be used with MediaPlayer and the new ExoPlayer API. Inspired by similar implementation for ImageView http://stackoverflow.com/questions/6650398/android-imageview-zoom-in-and-zoom-out

Usage

Library is distributed via jCenter

  1. dependencies {
  2. implementation 'ua.polohalo.zoomabletextureview:zoomabletextureview:1.0.0'
  3. }

Just include the custom view in your XML layout:

  1. <ua.polohalo.zoomabletextureview.ZoomableTextureView
  2. android:id="@+id/textureView"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. app:maxScale="6" ></ua.polohalo.zoomabletextureview.ZoomableTextureView>

app:maxScale=”6” determines that the max zooming factor will be 600%.

Main limitation of this library is the fact that it doesn’t properly handle “wrap_content” size so you need to set it manually

In case you want to use it with the new SimpleExoPlayerView instead of ExoPlayer(provides controls out of the box) there is a sample on how to do just that here.

License

  1. Licensed under the Apache License, Version 2.0 (the "License");
  2. you may not use this file except in compliance with the License.
  3. You may obtain a copy of the License at
  4. http://www.apache.org/licenses/LICENSE-2.0
  5. Unless required by applicable law or agreed to in writing, software
  6. distributed under the License is distributed on an "AS IS" BASIS,
  7. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  8. See the License for the specific language governing permissions and
  9. limitations under the License.