Transparent AlertDialog has black background

后端 未结 4 1857
温柔的废话
温柔的废话 2020-11-27 16:31

I have a custom AlertDialog style that makes the AlertDialog box transparent. It works fine except that when I inflate my desired transparent layo

4条回答
  •  孤独总比滥情好
    2020-11-27 16:52

    Have you tried using something like this:

    
    

    EDIT

    Try this in java code

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

提交回复
热议问题