支持任意view的平移缩放手势工具
github:GestureViewBinder 喜欢的记得给个star呦~有什么问题或者建议也希望能够指点一下,感激不尽!
使用时在app也就是根目录下的build.gradle中添加maven仓库地址
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
然后在项目的build.grale中添加依赖
implementation 'com.github.GeniusLiu:GestureViewBinder:1.0.1'
最后通过一行代码使用
GestureViewBinder.bind(this, groupView, targetView);
如果你想让view充满group且大小不能小于group
gestureViewBinder.setFullGroup(true)