圖片縮放PhoneView
阿新 • • 發佈:2019-01-08
第一步:導包
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" />