This code is used to how Display  profile image in rounded shape  in Android,
 and your xml file create like this
     
/** 
 * This class is used to create rounded image 
 * 
 */ 
public class RoundedImageView extends ImageView { 
 public RoundedImageView(Context context) { 
  super(context); 
  //   Auto-generated constructor stub 
 } 
 public RoundedImageView(Context context, AttributeSet attrs) { 
  super(context, attrs); 
 } 
 public RoundedImageView(Context context, AttributeSet attrs, int defStyle) { 
  super(context, attrs, defStyle); 
 } 
 protected void onDraw(Canvas canvas) { 
     Drawable drawable = getDrawable(); 
     if (drawable == null) { 
         return; 
     } 
     if (getWidth() == 0 || getHeight() == 0) { 
         return; 
     } 
     Bitmap bitmapCommon = ((BitmapDrawable) drawable).getBitmap(); 
     if (bitmapCommon == null) { 
         Log.d("null", "yes"); 
     } else { 
         Log.d("not null", "yes"); 
     } 
      bitmapCommon = bitmapCommon.copy(Bitmap.Config.ARGB_8888, true); 
     int w = getWidth(); 
     bitmapCommon = getCroppedBitmap(bitmapCommon, w); 
     canvas.drawBitmap(bitmapCommon, 0, 0, null); 
 } 
 public static Bitmap getCroppedBitmap(Bitmap bmp, int radius) { 
  Bitmap sbmp; 
  if (bmp.getWidth() != radius || bmp.getHeight() != radius) 
   sbmp = Bitmap.createScaledBitmap(bmp, radius, radius, false); 
  else 
   sbmp = bmp; 
  Bitmap output = Bitmap.createBitmap(sbmp.getWidth(), sbmp.getHeight(),Config.ARGB_8888); 
  Canvas canvas = new Canvas(output); 
  final Paint paint = new Paint(); 
  final Rect rect = new Rect(0, 0, sbmp.getWidth(), sbmp.getHeight()); 
  paint.setAntiAlias(true); 
  paint.setFilterBitmap(true); 
  paint.setDither(true); 
  canvas.drawARGB(0, 0, 0, 0); 
  paint.setColor(Color.parseColor("#BAB399")); 
  canvas.drawCircle(sbmp.getWidth() / 2 + 0.7f, 
    sbmp.getHeight() / 2 + 0.7f, sbmp.getWidth() / 2 + 0.1f, paint); 
  paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN)); 
  canvas.drawBitmap(sbmp, rect, rect, paint); 
  return output; 
 } 
} 
 | 
<com.packagename.RoundedImageView 
                android:id="@+id/user_img" 
                android:layout_width="60dip" 
                android:layout_height="60dip" 
                android:layout_gravity="center" 
                android:background="@drawable/ic_launcher" /> 
 |