¡@

Home 

2014/10/16 ¤W¤È 08:11:11

android Programming Glossary: circlebitmap

create circular image view in android [duplicate]

http://stackoverflow.com/questions/16208365/create-circular-image-view-in-android

how could i create rounded imageview in android i have tried the following code but its not working fine code Bitmap circleBitmap Bitmap.createBitmap bitmap.getWidth bitmap.getHeight Bitmap.Config.ARGB_8888 BitmapShader shader new BitmapShader bitmap.. BitmapShader bitmap TileMode.CLAMP TileMode.CLAMP Paint paint new Paint paint.setShader shader Canvas c new Canvas circleBitmap c.drawCircle bitmap.getWidth 2 bitmap.getHeight 2 bitmap.getWidth 2 paint imageView.setImageBitmap circleBitmap image inside.. Canvas circleBitmap c.drawCircle bitmap.getWidth 2 bitmap.getHeight 2 bitmap.getWidth 2 paint imageView.setImageBitmap circleBitmap image inside circle Could anybody help me regarding this @Thanks android imageview round share improve this question..

How to set bitmap in circular imageview?

http://stackoverflow.com/questions/5882180/how-to-set-bitmap-in-circular-imageview

to it. Draw the drawable. Bam circular image Bitmap bitmap getthebitmapyouwanttoshowinacirclefromsomewhere Bitmap circleBitmap Bitmap.createBitmap bitmap.getWidth bitmap.getHeight Bitmap.Config.ARGB_8888 BitmapShader shader new BitmapShader bitmap.. new BitmapShader bitmap TileMode.CLAMP TileMode.CLAMP Paint paint new Paint paint.setShader shader Canvas c new Canvas circleBitmap c.drawCircle bitmap.getWidth 2 bitmap.getHeight 2 bitmap.getWidth 2 paint myImageView.setImageBitmap circleBitmap share..