Code For Round Image in Android
ImageView imageView = (ImageView)findViewById(R.id.imageView);
Bitmap avatar = BitmapFactory.decodeResource(getResources(), R.drawable.background);
RoundedBitmapDrawable roundDrawable =
RoundedBitmapDrawableFactory.create(getResources(), avatar);
roundDrawable.setCircular(true);
imageView.setImageDrawable(roundDrawable);
Bitmap avatar = BitmapFactory.decodeResource(getResources(), R.drawable.background);
RoundedBitmapDrawable roundDrawable =
RoundedBitmapDrawableFactory.create(getResources(), avatar);
roundDrawable.setCircular(true);
imageView.setImageDrawable(roundDrawable);
Comments
Post a Comment