Remove alert dialog border With Custom Theme

后端 未结 6 1600
广开言路
广开言路 2020-12-17 05:40

\"enter

In my application i am using alert dialog with rounded rectangle theme.But it

6条回答
  •  余生分开走
    2020-12-17 06:39

    Use Dialog instead of AlertDialog

    Dialog callAlert = new Dialog(LoginActivity.this,R.style.CutomDialog);  
    callAlert.setContentView(R.layout.call);
    

    Style.xml

    
    

    call.xml

    
    

    call_bg.xml

    
    
    
     
    

    Main thing is that you have to make layout backgrpund transparent otherwise you will not able to get output as you want.

提交回复
热议问题