RecyclerViewHeader.java
15.3 KB
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
/*
* Copyright 2015 Bartosz Lipinski
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.cnlive.goldenline.ui.widget;
import android.content.Context;
import android.graphics.Rect;
import android.support.annotation.CallSuper;
import android.support.annotation.IntDef;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.StaggeredGridLayoutManager;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.RelativeLayout;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
public class RecyclerViewHeader extends RelativeLayout {
@Visibility
private int intendedVisibility = VISIBLE;
private int downTranslation;
private boolean hidden = false;
private boolean recyclerWantsTouch;
private boolean isVertical;
private boolean isAttachedToRecycler;
@Nullable
private RecyclerViewDelegate recyclerView;
@Nullable
private LayoutManagerDelegate layoutManager;
public RecyclerViewHeader(Context context) {
super(context);
}
public RecyclerViewHeader(Context context, AttributeSet attrs) {
super(context, attrs);
}
public RecyclerViewHeader(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
/**
* Attaches <code>RecyclerViewHeader</code> to <code>RecyclerView</code>.
* Be sure that <code>setLayoutManager(...)</code> has been called for <code>RecyclerView</code> before calling this method.
*
* @param recycler <code>RecyclerView</code> to attach <code>RecyclerViewHeader</code> to.
*/
public final void attachTo(@NonNull final RecyclerView recycler) {
validate(recycler);
this.recyclerView = RecyclerViewDelegate.with(recycler);
this.layoutManager = LayoutManagerDelegate.with(recycler.getLayoutManager());
isVertical = layoutManager.isVertical();
isAttachedToRecycler = true;
recyclerView.setHeaderDecoration(new HeaderItemDecoration());
recyclerView.setOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
onScrollChanged();
}
});
recyclerView.setOnChildAttachListener(new RecyclerView.OnChildAttachStateChangeListener() {
@Override
public void onChildViewAttachedToWindow(View view) {
}
@Override
public void onChildViewDetachedFromWindow(View view) {
recycler.post(new Runnable() {
@Override
public void run() {
recyclerView.invalidateItemDecorations();
onScrollChanged();
}
});
}
});
}
/**
* Detaches <code>RecyclerViewHeader</code> from <code>RecyclerView</code>.
*/
public final void detach() {
if (isAttachedToRecycler) {
isAttachedToRecycler = false;
recyclerWantsTouch = false;
recyclerView.reset();
recyclerView = null;
layoutManager = null;
}
}
private void onScrollChanged() {
hidden = !layoutManager.isFirstRowVisible();
RecyclerViewHeader.super.setVisibility(hidden ? INVISIBLE : intendedVisibility);
if (!hidden) {
final int translation = calculateTranslation();
if (isVertical) {
setTranslationY(translation);
} else {
setTranslationX(translation);
}
}
}
private int calculateTranslation() {
int offset = recyclerView.getScrollOffset(isVertical);
int base = layoutManager.isReversed() ? recyclerView.getTranslationBase(isVertical) : 0;
return base - offset;
}
@Override
public final void setVisibility(@Visibility int visibility) {
this.intendedVisibility = visibility;
if (!hidden) {
super.setVisibility(intendedVisibility);
}
}
@Visibility
@Override
public final int getVisibility() {
return intendedVisibility;
}
@Override
protected final void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
if (changed && isAttachedToRecycler) {
int verticalMargins = 0;
int horizontalMargins = 0;
if (getLayoutParams() instanceof MarginLayoutParams) {
final MarginLayoutParams layoutParams = (MarginLayoutParams) getLayoutParams();
verticalMargins = layoutParams.topMargin + layoutParams.bottomMargin;
horizontalMargins = layoutParams.leftMargin + layoutParams.rightMargin;
}
recyclerView.onHeaderSizeChanged(getHeight() + verticalMargins, getWidth() + horizontalMargins);
onScrollChanged();
}
}
@Override
@CallSuper
public boolean onInterceptTouchEvent(@NonNull MotionEvent ev) {
recyclerWantsTouch = isAttachedToRecycler && recyclerView.onInterceptTouchEvent(ev);
if (recyclerWantsTouch && ev.getAction() == MotionEvent.ACTION_DOWN) {
downTranslation = calculateTranslation();
}
return recyclerWantsTouch || super.onInterceptTouchEvent(ev);
}
@Override
@CallSuper
public boolean onTouchEvent(@NonNull MotionEvent event) {
if (recyclerWantsTouch) { // this cannot be true if recycler is not attached
int scrollDiff = downTranslation - calculateTranslation();
int verticalDiff = isVertical ? scrollDiff : 0;
int horizontalDiff = isVertical ? 0 : scrollDiff;
MotionEvent recyclerEvent =
MotionEvent.obtain(event.getDownTime(),
event.getEventTime(),
event.getAction(),
event.getX() - horizontalDiff,
event.getY() - verticalDiff,
event.getMetaState());
recyclerView.onTouchEvent(recyclerEvent);
return false;
}
return super.onTouchEvent(event);
}
private void validate(@NonNull RecyclerView recyclerView) {
if (recyclerView.getLayoutManager() == null) {
throw new IllegalStateException("Be sure to attach RecyclerViewHeader after setting your RecyclerView's LayoutManager.");
}
}
private class HeaderItemDecoration extends RecyclerView.ItemDecoration {
private int headerHeight;
private int headerWidth;
private int firstRowSpan;
public HeaderItemDecoration() {
firstRowSpan = layoutManager.getFirstRowSpan();
}
public void setWidth(int width) {
headerWidth = width;
}
public void setHeight(int height) {
headerHeight = height;
}
@Override
public void getItemOffsets(@NonNull Rect outRect, @NonNull View view, @NonNull RecyclerView parent, RecyclerView.State state) {
super.getItemOffsets(outRect, view, parent, state);
final boolean headerRelatedPosition = parent.getChildLayoutPosition(view) < firstRowSpan;
int heightOffset = headerRelatedPosition && isVertical ? headerHeight : 0;
int widthOffset = headerRelatedPosition && !isVertical ? headerWidth : 0;
if (layoutManager.isReversed()) {
outRect.bottom = heightOffset;
outRect.right = widthOffset;
} else {
outRect.top = heightOffset;
outRect.left = widthOffset;
}
}
}
private static class RecyclerViewDelegate {
@NonNull
private final RecyclerView recyclerView;
@Nullable
private HeaderItemDecoration decoration;
@Nullable
private RecyclerView.OnScrollListener onScrollListener;
@Nullable
private RecyclerView.OnChildAttachStateChangeListener onChildAttachListener;
private RecyclerViewDelegate(final @NonNull RecyclerView recyclerView) {
this.recyclerView = recyclerView;
}
@NonNull
public static RecyclerViewDelegate with(@NonNull RecyclerView recyclerView) {
return new RecyclerViewDelegate(recyclerView);
}
public final void onHeaderSizeChanged(int height, int width) {
if (decoration != null) {
decoration.setHeight(height);
decoration.setWidth(width);
recyclerView.post(new Runnable() {
@Override
public void run() {
invalidateItemDecorations();
}
});
}
}
private void invalidateItemDecorations() {
if (!recyclerView.isComputingLayout()) {
recyclerView.invalidateItemDecorations();
}
}
public final int getScrollOffset(boolean isVertical) {
return isVertical ? recyclerView.computeVerticalScrollOffset() : recyclerView.computeHorizontalScrollOffset();
}
public final int getTranslationBase(boolean isVertical) {
return isVertical ?
recyclerView.computeVerticalScrollRange() - recyclerView.getHeight() :
recyclerView.computeHorizontalScrollRange() - recyclerView.getWidth();
}
public final void setHeaderDecoration(HeaderItemDecoration decoration) {
clearHeaderDecoration();
this.decoration = decoration;
recyclerView.addItemDecoration(this.decoration, 0);
}
public final void clearHeaderDecoration() {
if (decoration != null) {
recyclerView.removeItemDecoration(decoration);
decoration = null;
}
}
public final void setOnScrollListener(RecyclerView.OnScrollListener onScrollListener) {
clearOnScrollListener();
this.onScrollListener = onScrollListener;
recyclerView.addOnScrollListener(this.onScrollListener);
}
public final void clearOnScrollListener() {
if (onScrollListener != null) {
recyclerView.removeOnScrollListener(onScrollListener);
onScrollListener = null;
}
}
public final void setOnChildAttachListener(RecyclerView.OnChildAttachStateChangeListener onChildAttachListener) {
clearOnChildAttachListener();
this.onChildAttachListener = onChildAttachListener;
recyclerView.addOnChildAttachStateChangeListener(this.onChildAttachListener);
}
public final void clearOnChildAttachListener() {
if (onChildAttachListener != null) {
recyclerView.removeOnChildAttachStateChangeListener(onChildAttachListener);
onChildAttachListener = null;
}
}
public final void reset() {
clearHeaderDecoration();
clearOnScrollListener();
clearOnChildAttachListener();
}
public boolean onInterceptTouchEvent(MotionEvent ev) {
return recyclerView.onInterceptTouchEvent(ev);
}
public boolean onTouchEvent(MotionEvent ev) {
return recyclerView.onTouchEvent(ev);
}
}
private static class LayoutManagerDelegate {
@Nullable
private final LinearLayoutManager linear;
@Nullable
private final GridLayoutManager grid;
@Nullable
private final StaggeredGridLayoutManager staggeredGrid;
private LayoutManagerDelegate(@NonNull RecyclerView.LayoutManager manager) {
final Class<? extends RecyclerView.LayoutManager> managerClass = manager.getClass();
if (managerClass == LinearLayoutManager.class) { //not using instanceof on purpose
linear = (LinearLayoutManager) manager;
grid = null;
staggeredGrid = null;
} else if (managerClass == GridLayoutManager.class) {
linear = null;
grid = (GridLayoutManager) manager;
staggeredGrid = null;
// } else if (manager instanceof StaggeredGridLayoutManager) { //TODO: 05.04.2016 implement staggered
// linear = null;
// grid = null;
// staggeredGrid = (StaggeredGridLayoutManager) manager;
} else {
throw new IllegalArgumentException("Currently RecyclerViewHeader supports only LinearLayoutManager and GridLayoutManager.");
}
}
@NonNull
public static LayoutManagerDelegate with(@NonNull RecyclerView.LayoutManager layoutManager) {
return new LayoutManagerDelegate(layoutManager);
}
public final int getFirstRowSpan() {
if (linear != null) {
return 1;
} else if (grid != null) {
return grid.getSpanCount();
// } else if (staggeredGrid != null) {
// return staggeredGrid.getSpanCount(); //TODO: 05.04.2016 implement staggered
}
return 0; //shouldn't get here
}
public final boolean isFirstRowVisible() {
if (linear != null) {
return linear.findFirstVisibleItemPosition() == 0;
} else if (grid != null) {
return grid.findFirstVisibleItemPosition() == 0;
// } else if (staggeredGrid != null) {
// return staggeredGrid.findFirstCompletelyVisibleItemPositions() //TODO: 05.04.2016 implement staggered
}
return false; //shouldn't get here
}
public final boolean isReversed() {
if (linear != null) {
return linear.getReverseLayout();
} else if (grid != null) {
return grid.getReverseLayout();
// } else if (staggeredGrid != null) {
// return ; //TODO: 05.04.2016 implement staggered
}
return false; //shouldn't get here
}
public final boolean isVertical() {
if (linear != null) {
return linear.getOrientation() == LinearLayoutManager.VERTICAL;
} else if (grid != null) {
return grid.getOrientation() == LinearLayoutManager.VERTICAL;
// } else if (staggeredGrid != null) {
// return ; //TODO: 05.04.2016 implement staggered
}
return false; //shouldn't get here
}
}
@IntDef({VISIBLE, INVISIBLE, GONE})
@Retention(RetentionPolicy.SOURCE)
private @interface Visibility {
}
}