PhotoView :PhotoView aims to help produce an easily usable implementation of a zooming Android ImageView.扩展自Android ImageView,支持通过单点/多点触摸来进行图片缩放的智能控件。
支持单点/多点触摸;缩放图片; 平滑滚动; 在滑动父控件下能够运行良好;(例如:ViewPager)
github地址:https://github.com/chrisbanes/PhotoView
默认double click会让图片方大缩小,但是没有单击事件,找了好久终于找到,并且该方法不会和拖拽放大拉伸冲突。方法如下:
photoView.setOnPhotoTapListener(new PhotoViewAttacher.OnPhotoTapListener() {
@Override
public void onPhotoTap(View view, float x, float y) {
((Activity)context).finish();
}
});
感谢晨风的小窝提供的方法:https://blog.csdn.net/gold_brick/article/details/56834865
最后
以上就是悲凉芹菜最近收集整理的关于Android开源控件:PhotoView的单击事件的全部内容,更多相关Android开源控件:PhotoView内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复