Bitmap batmapBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.batman); RoundedBitmapDrawable circularBitmapDrawable = RoundedBitmapDrawableFactory.create(getResources(), batmapBitmap); // option 1 h/t [Chris Banes](https://chris.banes.me/) circularBitmapDrawable.setCornerRadius(batmapBitmap.getWidth()); // option 2 h/t @csorgod in the comments circularBitmapDrawable.setCircular(true); myImageView.setImageDrawable(circularBitmapDrawable); System.out.prinln("MyActivity", "That's all folks");