Skip to content

Instantly share code, notes, and snippets.

View Tufan21's full-sized avatar

Tufan Mukherjee Tufan21

  • Venturit INC.
  • Pune
View GitHub Profile
@Tufan21
Tufan21 / BlurBitmap
Last active February 15, 2017 06:15
Blur Bitmap from drawable
import android.graphics.Bitmap;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.renderscript.Allocation;
import android.renderscript.Element;
import android.renderscript.RenderScript;
import android.renderscript.ScriptIntrinsicBlur;
Drawable splashDrawable= ContextCompat.getDrawable(mContext,R.drawable.splash_image);//get drawable from resources folder
@Tufan21
Tufan21 / PermissionHelper.java
Last active May 6, 2016 14:25
Marshmellow runtime permission jeneric class
import android.Manifest;
import android.app.Activity;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Build;
import android.provider.Settings;
import android.support.v4.app.ActivityCompat;