Android自定义缩放ImageView

支持手势缩放的自定义 ImageView,在图片浏览场景下真挺实用的。系统默认的 ImageView 功能太基础了,想实现两指缩放、滑动查看细节?还得靠自己写。

ScaleGestureDetector配合GestureDetector来缩放和平移手势,识别准确,响应也快。缩放操作其实就是改Matrix的 scale 和 translate 值,Android 自带的Matrix类就能搞定,省事。

重写onDraw()方法,把修改后的Matrix应用到 Canvas 上,配合drawBitmap(),图片缩放、平移都能自然过渡。哦对,onTouchEvent()别忘了,把触摸事件交给手势检测器就行。

想要交互更顺滑点?加个ValueAnimator,做个缩放过渡动画,效果还挺惊艳的。还有边界检查也要做,图片可不能随便飘出控件范围,体验一塌糊涂。

遇上大图加载,可以设inSampleSize来优化内存。硬件加速开一下,渲染速度提升不止一点半点。要是用户旋转屏幕,还得记得保存Matrix状态,用onSaveInstanceState()onRestoreInstanceState()搞定。

照片查看、地图浏览这类场景用得上这个控件。如果你也在做类似项目,写个自己的ZoomImageView,比网上扒的库靠谱多了,维护也方便。

zip
com.zhuxiaohao.zoomimageview_01.zip 预估大小:47个文件
folder
com.zhuxiaohao.zoomimageview_01 文件夹
folder
bin 文件夹
file
classes.dex 802KB
folder
res 文件夹
folder
crunch 文件夹
folder
drawable-hdpi 文件夹
file
ic_launcher.png 6KB
folder
drawable-xhdpi 文件夹
file
ic_launcher.png 9KB
folder
drawable-xxhdpi 文件夹
file
ic_launcher.png 17KB
folder
drawable-mdpi 文件夹
file
ic_launcher.png 3KB
file
jarlist.cache 120B
folder
dexedLibs 文件夹
file
android-support-v4-3656ed954b5d5af34b7cb37b4b241697.jar 267KB
folder
classes 文件夹
folder
com 文件夹
folder
zhuxiaohao 文件夹
folder
zoomimageview 文件夹
file
MainActivity.class 1011B
file
BuildConfig.class 365B
file
R$layout.class 433B
file
R$id.class 456B
file
R$drawable.class 466B
file
R$dimen.class 491B
file
R$attr.class 370B
file
R$menu.class 418B
file
R.class 773B
file
R$string.class 502B
file
ZoomImageView.class 5KB
file
R$style.class 461B
file
resources.ap_ 158KB
file
com.zhuxiaohao.zoomimageview_01.apk 431KB
file
AndroidManifest.xml 845B
folder
res 文件夹
folder
drawable-ldpi 文件夹
folder
values-v11 文件夹
file
styles.xml 324B
folder
menu 文件夹
file
main.xml 367B
folder
values-v14 文件夹
file
styles.xml 381B
folder
drawable-hdpi 文件夹
file
image.jpg 118KB
file
ic_launcher.png 7KB
folder
drawable-xhdpi 文件夹
file
ic_launcher.png 12KB
folder
drawable-xxhdpi 文件夹
file
ic_launcher.png 24KB
folder
values 文件夹
file
strings.xml 238B
file
styles.xml 680B
file
dimens.xml 213B
folder
drawable-mdpi 文件夹
file
ic_launcher.png 4KB
folder
layout 文件夹
file
activity_main.xml 739B
folder
values-w820dp 文件夹
file
dimens.xml 373B
file
proguard-project.txt 781B
file
ic_launcher-web.png 50KB
folder
assets 文件夹
folder
gen 文件夹
folder
com 文件夹
folder
zhuxiaohao 文件夹
folder
zoomimageview 文件夹
file
BuildConfig.java 170B
file
R.java 3KB
folder
.settings 文件夹
file
org.eclipse.jdt.core.prefs 173B
folder
src 文件夹
folder
com 文件夹
folder
zhuxiaohao 文件夹
folder
zoomimageview 文件夹
file
MainActivity.java 578B
file
ZoomImageView.java 11KB
file
.project 834B
file
.classpath 466B
file
project.properties 563B
file
AndroidManifest.xml 845B
folder
libs 文件夹
file
android-support-v4.jar 741KB
...
zip 文件大小:1.99MB