GestureViewBinder
GestureViewBinder copied to clipboard
` @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { setMeasuredDimension(3000, 3000); }` 当设置view大小后,缩放中心点位置不对,希望可以有个解决的办法
public class OutLayout extends RelativeLayout { private boolean mScrolling; private float StartX, EndX; private float StartY, EndY; public OutLayout(Context context) { this(context, null); } public OutLayout(Context context, AttributeSet attrs, int...
需要实现一个unbind或者暂停bind的功能,而且现在1.0.1的引用没有作用,停止绘画开始缩放没效果
能不能按照双指中间点缩放
使用GestureViewBinder时用到的问题,父布局使用的RelativeLayout,子布局是自定义view,在自定义view中需要响应onTouchEvent事件的MotionEvent.ACTION_UP方法,这个要怎么处理?