일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 코딜리티
- Android
- 스와이프
- 안드로이드개발레벨업교과서
- 리사이클러뷰
- 뷰변경 감지
- ui test
- high order function
- 생명주기
- Fragment 수동 추가
- binding adapter
- LayoutManger
- IntentTestRule
- fragment
- 고차함수
- Fragment에서 Activity의 함수 사용하기
- searchview
- 코틀린
- 안드로이드
- recyclerview
- viewholder
- 안드로이드13
- Error:Execution failed for task ':app:mergeDebugResources'
- 안드로이드스튜디오
- ActivityTestRule
- adapter
- 재사용
- espresso
- 구분선
- 테마 아이콘
Archives
- Today
- Total
룬아님의 취중코딩
BottomSheetDialogFragment 드래그 되지 않게 막는 방법 본문
사실 바텀시트에서 드래그를 막아야 하는 경우는 드믈지만 터치와 드래그를 막아 뒤로 가기를 누르거나 따로 dismiss를 해주어야만 fragment가 종료되도록 구현할 수 있다.
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
return BottomSheetDialog(requireContext(), theme).apply {
setOnShowListener {
window?.findViewById<View>(R.id.touch_outside)
?.setOnClickListener(null)
(window?.findViewById<View>(R.id.design_bottom_sheet)
?.layoutParams as CoordinatorLayout.LayoutParams).behavior = null
}
}
}
https://stackoverflow.com/a/48362662
반응형
'개발 > 안드로이드 개발' 카테고리의 다른 글
BottomSheetDialogFragment의 ScrollView에서 radius와 clip 적용하기 (0) | 2020.01.20 |
---|---|
TaskStackBuilder 사용 시 이전 task는 어떻게 될까? (0) | 2020.01.17 |
BottomSheetDialogFragment full screen 으로 show 하는 방법 (2) | 2020.01.16 |
BottomSheetDialogFragment에 argument 넘기는 방법 (0) | 2020.01.16 |
java.lang.IllegalArgumentException: baseUrl must end in / (1) | 2020.01.07 |
Comments