Android开发,实现图片缩放

喜你入骨 提交于 2020-02-04 20:47:38

1.添加依赖

implementation 'com.github.chrisbanes.photoview:library:1.2.4'

2.将xml文件中的ImageView控件替换成PhotoView

以前的:

<ImageView
        android:id="@+id/imageView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:srcCompat="@tools:sample/avatars[2]" />

替换之后:

<uk.co.senab.photoview.PhotoView
        android:id="@+id/imageView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:srcCompat="@tools:sample/avatars[2]" />

3.效果展示

在这里插入图片描述
在这里插入图片描述

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!