How to make custom dialog with rounded corners in android

前端 未结 16 864
半阙折子戏
半阙折子戏 2020-11-28 02:15

What I am trying to do: I am trying to make a custom dialog in android With rounded corners.

What is happening: I am able to make c

16条回答
  •  渐次进展
    2020-11-28 02:26

    Setting

    dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
    

    will prevent dialog to cast a shadow.

    Solution is to use

    dialog.getWindow().setBackgroundDrawableResource(R.drawable.dialog_rounded_background);
    

    where is R.drawable.dialog_rounded_background

    
    
        
            
                
                
            
        
    
    
    

提交回复
热议问题