forked from shawara/Android-ZoomableImageView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZoomableImageView.java
234 lines (175 loc) · 7.52 KB
/
ZoomableImageView.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
package com.example.shawara.chat.ui;
import android.content.Context;
import android.graphics.Canvas;
import android.support.v4.view.MotionEventCompat;
import android.util.AttributeSet;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.ScaleGestureDetector;
import android.widget.ImageView;
import java.util.ArrayList;
import java.util.List;
import static android.view.MotionEvent.INVALID_POINTER_ID;
/**
* Created by shawara on 8/27/2016.
*/
public class ZoomableImageView extends ImageView {
Context mContext;
GestureDetector gestureDetector;
ScaleGestureDetector scaleGestureDetector;
boolean longPress = false;
float scaleX = 1.0f, scaleY = 1.0f, scaleXP = 0.f, scaleYP = 0.f;
float translateX = 0.0f, translateY = 0.0f;
float mScaleFactor = 1.f;
float mPreviousScale = 1.0f;
private int mActivePointerId = INVALID_POINTER_ID;
float mLastTouchX;
float mLastTouchY;
private List<Scale> mScaleList = new ArrayList<>();
private class Scale {
float mFactor;
float X;
float Y;
public Scale(float factor, float x, float y) {
mFactor = factor;
X = x;
Y = y;
}
}
@Override
protected void onDraw(Canvas canvas) {
canvas.translate(translateX, translateY);
for (int i = 1; i < mScaleList.size(); i++)
canvas.scale(mScaleList.get(i).mFactor / mScaleList.get(i - 1).mFactor,
mScaleList.get(i).mFactor / mScaleList.get(i - 1).mFactor,
mScaleList.get(i).X, mScaleList.get(i).Y);
canvas.scale(scaleX / mScaleList.get(mScaleList.size() - 1).mFactor,
scaleY / mScaleList.get(mScaleList.size() - 1).mFactor, scaleXP, scaleYP);
super.onDraw(canvas);
}
public ZoomableImageView(Context context) {
super(context);
mContext = context;
gestureDetector = new GestureDetector(context, new GestureListener());
scaleGestureDetector = new ScaleGestureDetector(context, new ScaleGestureListener());
mScaleList.add(new Scale(1.0f, 0f, 0f));
}
public ZoomableImageView(Context context, AttributeSet attrs) {
super(context, attrs);
mContext = context;
gestureDetector = new GestureDetector(context, new GestureListener());
scaleGestureDetector = new ScaleGestureDetector(context, new ScaleGestureListener());
mScaleList.add(new Scale(1.0f, 0f, 0f));
}
@Override
public boolean onTouchEvent(MotionEvent event) {
//
detectDragging(event);
scaleGestureDetector.onTouchEvent(event);
gestureDetector.onTouchEvent(event);
return super.onTouchEvent(event);
}
// Double tap
private class GestureListener extends GestureDetector.SimpleOnGestureListener {
// event when double tap occurs
@Override
public boolean onDoubleTap(MotionEvent e) {
float x = e.getX();
float y = e.getY();
// Toast.makeText(mContext, "Double Tap: Tapped at (" + x + "," + y + ")", Toast.LENGTH_SHORT).show();
if (scaleX == 1.f)
mScaleFactor = scaleX = scaleY = 3.0f;
else
mScaleFactor = scaleX = scaleY = 1.0f;
mScaleList.clear();
mScaleList.add(new Scale(1.0f, 0f, 0f));
mScaleList.add(new Scale(mScaleFactor, scaleXP, scaleYP));
scaleXP = x;
scaleYP = y;
translateX = translateY = 0f;
invalidate();
return true;
}
}
// dragging
private void detectDragging(MotionEvent ev) {
final int action = MotionEventCompat.getActionMasked(ev);
switch (action) {
case MotionEvent.ACTION_DOWN: {
final int pointerIndex = MotionEventCompat.getActionIndex(ev);
final float x = MotionEventCompat.getX(ev, pointerIndex);
final float y = MotionEventCompat.getY(ev, pointerIndex);
// Remember where we started (for dragging)
mLastTouchX = x;
mLastTouchY = y;
// Save the ID of this pointer (for dragging)
mActivePointerId = MotionEventCompat.getPointerId(ev, 0);
break;
}
case MotionEvent.ACTION_MOVE: {
// Find the index of the active pointer and fetch its position
final int pointerIndex =
MotionEventCompat.findPointerIndex(ev, mActivePointerId);
final float x = MotionEventCompat.getX(ev, pointerIndex);
final float y = MotionEventCompat.getY(ev, pointerIndex);
// Calculate the distance moved
final float dx = x - mLastTouchX;
final float dy = y - mLastTouchY;
translateX += dx;
translateY += dy;
invalidate();
// Remember this touch position for the next move event
mLastTouchX = x;
mLastTouchY = y;
break;
}
case MotionEvent.ACTION_UP: {
mActivePointerId = INVALID_POINTER_ID;
break;
}
case MotionEvent.ACTION_CANCEL: {
mActivePointerId = INVALID_POINTER_ID;
break;
}
case MotionEvent.ACTION_POINTER_UP: {
final int pointerIndex = MotionEventCompat.getActionIndex(ev);
final int pointerId = MotionEventCompat.getPointerId(ev, pointerIndex);
if (pointerId == mActivePointerId) {
// This was our active pointer going up. Choose a new
// active pointer and adjust accordingly.
final int newPointerIndex = pointerIndex == 0 ? 1 : 0;
mLastTouchX = MotionEventCompat.getX(ev, newPointerIndex);
mLastTouchY = MotionEventCompat.getY(ev, newPointerIndex);
mActivePointerId = MotionEventCompat.getPointerId(ev, newPointerIndex);
}
break;
}
}
}
// scaling
private class ScaleGestureListener extends ScaleGestureDetector.SimpleOnScaleGestureListener {
@Override
public boolean onScale(ScaleGestureDetector detector) {
float currentScale = detector.getScaleFactor();
// Log.d("hhh", "onScale: " + mScaleFactor + " scalefactor " + detector.getScaleFactor());
mScaleFactor += (currentScale - mPreviousScale);
// Don't let the object get too small or too large.
mScaleFactor = Math.max(.7f, Math.min(mScaleFactor, 3.0f));
scaleX = mScaleFactor;
scaleY = mScaleFactor;
// scaleXP = getWidth() / 2;
// scaleYP = getHeight() / 2;
scaleXP = detector.getFocusX();
scaleYP = detector.getFocusY();
mPreviousScale = currentScale;
invalidate();
return super.onScale(detector);
}
@Override
public void onScaleEnd(ScaleGestureDetector detector) {
mScaleList.add(new Scale(mScaleFactor, scaleXP, scaleYP));
mPreviousScale = 1.f;
super.onScaleEnd(detector);
}
}
}