android 开源photoView的使用

github地址:https://github.com/chrisbanes/PhotoView

简介

PhotoView 是一款扩展自Android ImageView,支持通过单点/多点触摸来进行图片缩放的智能控件。

特性:

支持单点/多点触摸,即时缩放图片;
支持平滑滚动;
在滑动父控件下能够运行良好;(例如:ViewPager)
当用户的触点改变是可以触发通知

第一步:添加maven url

allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

第二步:依赖

compile 'com.github.chrisbanes:PhotoView:1.2.6'

第三步:布局


第四步: 代码使用

PhotoView mPhotoView;
PhotoViewAttacher mAttacher;

mAttacher = new PhotoViewAttacher(mPhotoView);
mPhotoView.setImageBitmap(mBitmap);
mAttacher.update();

有不明白的,欢迎留言, 谢谢!

你可能感兴趣的:(android 开源photoView的使用)