You also need to check the current version of Android.
Button bProfile; // your Button Bitmap bitmap; // your bitmap if(android.os.Build.VERSION.SDK_INT < 16) { bProfile.setBackgroundDrawable(new BitmapDrawable(getResources(), bitmap)); } else { bProfile.setBackground(new BitmapDrawable(getResources(),bitmap)); }
source share