Unable to get proper custom AlertDialog

后端 未结 2 525
广开言路
广开言路 2021-01-26 14:55

I have been trying to set a custom AlertDialog but was not able to get correctly.

prompt.xml




        
2条回答
  •  悲&欢浪女
    2021-01-26 15:32

    Try this

    Dialog dialog = new Dialog(MainAppActivity.this, R.style.PauseDialog);
    dialog.setContentView(R.layout.prompt);
    dialog.setCancelable(true);
    dialog.show();
    

    and in style.xml

    
    

提交回复
热议问题