Dialog with transparent background in Android

前端 未结 20 2772
孤城傲影
孤城傲影 2020-11-22 15:02

How do I remove the black background from a dialog box in Android. The pic shows the problem.

\"enter

20条回答
  •  南方客
    南方客 (楼主)
    2020-11-22 15:23

    This is what I did to achieve translucency with AlertDialog.

    Created a custom style:

    
    

    And then create the dialog with:

    AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), R.style.TranslucentDialog);
    AlertDialog dialog = builder.create();
    

提交回复
热议问题