图片缩放PhoneView
第一步:导包
implementation 'com.github.chrisbanes:PhotoView:2.0.0'
第二步:加bmob仓库地址
在build.gradle(project)中的repositories下添加,示例:
allprojects { repositories { google() jcenter() //Bmob的maven仓库地址,必须填写 maven { url "https://raw.github.com/bmob/bmob-android-sdk/master" } maven { url "https://jitpack.io" } } }
第三步:布局中直接引用就可以了
<com.github.chrisbanes.photoview.PhotoView android:id="@+id/imageView2" android:layout_width="match_parent" android:layout_height="match_parent" />
一只喜欢编程的小菜鸟