import android.app.Activity;
import android.view.WindowManager;
/**
* 防止截屏,一般在onCreate中使用,PAScreenShotUtils.preventScreenShot(this);
* 防截屏工具类
*/
public class ScreenShotUtils {
/**
* 防止截屏,一般在onCreate中使用
*
* @param ac ac
*/
public static void preventScreenShot(Activity ac) {
ac.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
}
}