Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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;
        }
    }
}