BottomSheetDialog background blinking

前端 未结 3 686
日久生厌
日久生厌 2021-02-01 05:34

BottomSheetDialog\'s background is blinking when switching between apps. What am I doing wrong ?

MainActivity.java

public class MainActi         


        
3条回答
  •  面向向阳花
    2021-02-01 06:01

    The main reason for the flickering is due to the default styling of the BottomSheetDialog which defines a default animation and the dim behavior.

    We can resolve the above issue by defining a custom theme using bottomSheetDialogTheme which in turn:

    1. Disables the default window animation for the BottomSheet by setting windowAnimationStyle to @null.
    2. Sets the backgroundDimEnabled attribute to false.

    Example:

    
    
    
    

提交回复
热议问题