Java tutorial
//package com.java2s; import android.app.Activity; import android.graphics.Bitmap; public class Main { private static Bitmap mScreenShot = null; public static void clearForstedGlassBackground(Activity activity) { activity.getWindow().getDecorView().setBackground(null); if (mScreenShot != null && !mScreenShot.isRecycled()) { mScreenShot.recycle(); mScreenShot = null; } } }