como poner foto en redondo android studio code example
Example: como poner foto en redondo android studio
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Drawable originalDrawable = getResources().getDrawable(R.drawable.image);
Bitmap originalBitmap = ((BitmapDrawable) originalDrawable).getBitmap();
RoundedBitmapDrawable roundedDrawable =
RoundedBitmapDrawableFactory.create(getResources(), originalBitmap);
roundedDrawable.setCornerRadius(originalBitmap.getHeight());
ImageView imageView = (ImageView) findViewById(R.id.imageView);
imageView.setImageDrawable(roundedDrawable);
}