Prevent BottomSheetDialogFragment covering navigation bar

前端 未结 10 525
轮回少年
轮回少年 2020-12-12 23:49

I\'m using really naive code to show a bottom sheet dialog fragment:

class LogoutBottomSheetFragment : BottomSheetDialogFragment() {

    override fun onCrea         


        
10条回答
  •  猫巷女王i
    2020-12-13 00:26

    I know there is many solutions here already but all of them seems too much to me, so I found this very simple solution here, credit goes to Arthur Nagy:

    just override the getTheme method in the BottomSheetDialogFragment:

    override fun getTheme(): Int  = R.style.Theme_NoWiredStrapInNavigationBar
    

    and in styles.xml:

    
    

    You can also add support for night mode by changing the color @color/bottom_sheet_bg in the values-night assets folder

提交回复
热议问题