android 开源photoView的使用
2016-07-11 本文已影响18585人
666swb
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'
第三步:布局
<uk.co.senab.photoview.PhotoView
android:id="@+id/photoView"
android:layout_width="180dp"
android:layout_height="140dp"
android:background="#333333"
android:layout_marginLeft="20dp"
/>
第四步: 代码使用
PhotoView mPhotoView;
PhotoViewAttacher mAttacher;
mAttacher = new PhotoViewAttacher(mPhotoView);
mPhotoView.setImageBitmap(mBitmap);
mAttacher.update();
有不明白的,欢迎留言, 谢谢!