NewPipe/app/src/main/java/com/google/android/material/appbar/FlingBehavior.java

82 lines
2.7 KiB
Java
Raw Normal View History

2019-10-04 14:59:08 +02:00
package com.google.android.material.appbar;
import android.content.Context;
import android.util.AttributeSet;
2019-10-02 02:59:20 +02:00
import android.view.MotionEvent;
import android.widget.OverScroller;
2019-10-04 14:59:08 +02:00
import androidx.annotation.Nullable;
import androidx.coordinatorlayout.widget.CoordinatorLayout;
2019-10-02 02:59:20 +02:00
import java.lang.reflect.Field;
2019-10-02 02:59:20 +02:00
// check this https://stackoverflow.com/questions/56849221/recyclerview-fling-causes-laggy-while-appbarlayout-is-scrolling/57997489#57997489
public final class FlingBehavior extends AppBarLayout.Behavior {
public FlingBehavior(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
2019-10-02 02:59:20 +02:00
public boolean onInterceptTouchEvent(CoordinatorLayout parent, AppBarLayout child, MotionEvent ev) {
switch (ev.getActionMasked()) {
case MotionEvent.ACTION_DOWN:
// remove reference to old nested scrolling child
resetNestedScrollingChild();
// Stop fling when your finger touches the screen
stopAppBarLayoutFling();
break;
default:
break;
}
2019-10-02 02:59:20 +02:00
return super.onInterceptTouchEvent(parent, child, ev);
}
2019-10-02 02:59:20 +02:00
@Nullable
private OverScroller getScrollerField() {
try {
Class<?> headerBehaviorType = this.getClass().getSuperclass().getSuperclass().getSuperclass();
if (headerBehaviorType != null) {
Field field = headerBehaviorType.getDeclaredField("scroller");
field.setAccessible(true);
return ((OverScroller) field.get(this));
}
2019-10-02 02:59:20 +02:00
} catch (NoSuchFieldException | IllegalAccessException e) {
// ?
}
2019-10-02 02:59:20 +02:00
return null;
}
2019-10-02 02:59:20 +02:00
@Nullable
private Field getLastNestedScrollingChildRefField() {
try {
Class<?> headerBehaviorType = this.getClass().getSuperclass().getSuperclass();
if (headerBehaviorType != null) {
Field field = headerBehaviorType.getDeclaredField("lastNestedScrollingChildRef");
field.setAccessible(true);
return field;
}
} catch (NoSuchFieldException e) {
// ?
}
2019-10-02 02:59:20 +02:00
return null;
}
2019-10-02 02:59:20 +02:00
private void resetNestedScrollingChild(){
Field field = getLastNestedScrollingChildRefField();
if(field != null){
try {
Object value = field.get(this);
if(value != null) field.set(this, null);
} catch (IllegalAccessException e) {
// ?
}
}
2019-10-02 02:59:20 +02:00
}
2019-10-02 02:59:20 +02:00
private void stopAppBarLayoutFling() {
OverScroller scroller = getScrollerField();
if (scroller != null) scroller.forceFinished(true);
}
2019-10-02 02:59:20 +02:00
}