Android Holo Dialog has 2 backgrounds layered on top of one another

后端 未结 1 679
傲寒
傲寒 2021-02-14 01:17

\"enter

The dialog looks like this. There is a layer behind the dialog itself about 10-20

1条回答
  •  无人共我
    2021-02-14 01:31

    If you want to style a Dialog then you have to use a ContextThemeWrapper:

    AlertDialog.Builder mBuilder = new AlertDialog.Builder(new ContextThemeWrapper(context, android.R.style.Theme_Holo_Dialog));
    

    0 讨论(0)
提交回复
热议问题