androidandroid-dialog

Dialog with transparent background in Android


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

enter image description here

final Dialog dialog = new Dialog(Screen1.this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.themechanger); 

Solution

  • Add this code

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

    Or this one instead:

    dialog.getWindow().setBackgroundDrawableResource(android.R.color.transparent);