Skip to content

Instantly share code, notes, and snippets.

View Sdghasemi's full-sized avatar

Saeed Ghasemi Sdghasemi

  • Stockholm, Sweden
View GitHub Profile
@Sdghasemi
Sdghasemi / NestedRecyclerView.java
Last active December 29, 2018 19:42
Java version of a RecyclerView that respects the nested scrolling of its children (Credits to original kotlin version: https://medium.com/widgetlabs-engineering/scrollable-nestedscrollviews-inside-recyclerview-ca65050d828a)
import android.content.Context;
import android.os.Build;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.annotation.RequiresApi;
import android.support.v4.view.NestedScrollingParent;
import android.support.v4.view.ViewCompat;
import android.support.v7.widget.RecyclerView;
import android.util.AttributeSet;
import android.view.MotionEvent;