PhotoView的使用

前言

PhotoView是一个常用的图片预览控件,主要用于Android中大图查看,例如结合ViePager完成朋友圈九宫格图片预览功能,前几天我写的ViewPager分页加载数据这篇博客,可以结合起来使用,PhotoView主要的功能有,图片手势缩放,旋转,相比ImageView,用户体验更好。


今天我主要介绍两个PhotoView的框架,第一个是(https://github.com/chrisbanes/PhotoView)。这个库,应用非常广泛,start数量极高。第二个是(https://github.com/bm-x/PhotoView),这个支持旋转功能,在我公司的项目也用的是这个库。

先看一下效果PhotoView的使用_第1张图片

  • 首先介绍第一个
  1. 在我们项目module build.gradle中配置
dependencies {
    compile 'com.github.chrisbanes:PhotoView:2.0.0'
}
  1. 在xml布局中引用该控件
.co.senab.photoview.PhotoView
        android:id="@+id/photoview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

是不是很简单,这就结束了

  • 然后介绍下第二个
  1. 在我们项目module build.gradle中配置
dependencies {
    compile 'com.bm.photoview:library:1.4.1'
}
  1. 在xml布局中引用该控件
<com.bm.library.PhotoView
        android:id="@+id/photoview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

3.设置可以缩放,默认是不支持缩放的…

photoView.disenable();

你可能感兴趣的:(Android)