Skip to content

Instantly share code, notes, and snippets.

View xProgrammer-007's full-sized avatar
💭
I may be slow to respond.

Akki_xDev xProgrammer-007

💭
I may be slow to respond.
View GitHub Profile
@rizafu
rizafu / BottomSheetBehaviorDialogFragment.kt
Created March 28, 2019 09:45
Android bottom sheet behavior in bottom sheet dialog fragment
abstract class BottomSheetBehaviorDialogFragment: BottomSheetDialogFragment(){
private var behavior: BottomSheetBehavior<View>? = null
abstract fun createContentView(): View
open fun getStateStart(): Int = BottomSheetBehavior.STATE_EXPANDED
open fun onSlide(bottomSheet: View, slideOffset: Float) = Unit
open fun onStateChanged(bottomSheet: View, newState: Int) = Unit