我是靠谱客的博主 粗心萝莉,最近开发中收集的这篇文章主要介绍Android PhotoView单点/多点触摸进行图片缩放,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

效果图:



代码示范:
ImageView
mImageView; PhotoViewAttacher mAttacher; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // Any implementation of ImageView can be used! mImageView = (ImageView) findViewById(R.id.iv_photo); // Set the Drawable displayed Drawable bitmap = getResources().getDrawable(R.drawable.wallpaper); mImageView.setImageDrawable(bitmap); // Attach a PhotoViewAttacher, which takes care of all of the zooming functionality. mAttacher = new PhotoViewAttacher(mImageView); } // If you later call mImageView.setImageDrawable/setImageBitmap/setImageResource/etc then you just need to call attacher.update();

转载于:https://www.cnblogs.com/weixiao870428/p/3524029.html

最后

以上就是粗心萝莉为你收集整理的Android PhotoView单点/多点触摸进行图片缩放的全部内容,希望文章能够帮你解决Android PhotoView单点/多点触摸进行图片缩放所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部