Search code examples
androiddatabasefirebase-realtime-databasegoogle-maps-api-3android-alertdialog

Removing Background Blur Or Black Theme In Alert Dialog Box


this is my code ,is not working correctly.....

getWindow().setBackgroundDrawable(newColorDrawable(android.graphics.Color.TRANSPARENT));


Solution

  • direction_Alert_Box.requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
    direction_Alert_Box.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);