This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import androidx.recyclerview.widget.LinearLayoutManager | |
| import androidx.recyclerview.widget.RecyclerView | |
| class LoadMoreListener( | |
| private val threshold: Int, | |
| private val listener: OnLoadMoreRequestedListener | |
| ) : RecyclerView.OnScrollListener() { | |
| companion object { | |
| fun attach( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package kozyriatskyi.anton.sked.week.stickyheaders | |
| import android.graphics.Canvas | |
| import android.support.v4.view.ViewCompat | |
| import android.support.v7.widget.RecyclerView | |
| import android.util.SparseIntArray | |
| import android.view.MotionEvent | |
| import android.view.View | |
| import android.view.ViewGroup |