Skip to content

Instantly share code, notes, and snippets.

@mrgoltstein
mrgoltstein / ViewPagerBottomSheetBehavior.kt
Last active September 17, 2017 18:08
Use this custom CoordinatorLayout.Behavior to fix an issue in the support library where ViewPager pages are not scrollable when the ViewPager is placed within a Bottom Sheet. Credits for the fix go to https://github.com/laenger/ViewPagerBottomSheet. The idea behind this approach is that it is more maintainable, but it requires reflection to make…
package android.support.design.widget
import android.content.Context
import android.support.v4.view.ViewCompat
import android.support.v4.view.ViewPager
import android.util.AttributeSet
import android.view.View
import android.view.ViewGroup
import android.view.ViewParent
import java.lang.ref.WeakReference