In android, an ImageView is a rectangle by default. Is it possible to make it a rounded rectangle (clip off all 4 corners of my Bitmap to be rounded rectangles) in the ImageView? If yes, can you please tell me how can I do that?
|
This is pretty late in response, but for anyone else that is looking for this, you can do the following code to manually round the corners of your images. This isn't my code, but I've used it and it's works wonderfully. I used it as a helper within an ImageHelper class and extended it just a bit to pass in the amount of feathering I need for a given image. Final code looks like this:
Hope this helps someone! |
|||||||||||||
|
|
I found that both methods were very helpful in coming up with a working solution. Here is my composite version, that is pixel independent and allows you to have some square corners with the rest of the corners having the same radius (which is the usual use case). With thanks to both of the solutions above:
Also, I overrode ImageView to put this in so I could define it in xml. You may want to add in some of the logic that the super call makes here, but I've commented it as it's not helpful in my case.
Hope this helps! |
|||||||||||||
|
|
You should extend If you want a frame around the image you could also superimpose the rounded frame on top of the image view in the layout. [edit]Superimpose the frame on to op the original image, by using a |
|||||||
|
|
My implementation of ImageView with rounded corners widget, that (down||up)sizes image to required dimensions. It utilizes code form CaspNZ.
|
||||
|
|
|
Props to George Walters II above, I just took his answer and extended it a bit to support rounding individual corners differently. This could be optimized a bit further (some of the target rects overlap), but not a whole lot. I know this thread is a bit old, but its one of the top results for queries on Google for how to round corners of ImageViews on Android.
|
|||
|
|
While all the above answers work, Romain Guy (a core Android developer) shows a better method in his blog which uses less memory by using a shader not creating a copy of the bitmap. The general gist of the functionality is here:
The advantages of this over other methods is that it:
I've created a RoundedImageView based off this code that wraps this logic into an ImageView and adds proper |
|||||||||||
|
|
The following creates a rounded rectangle layout object that draws a rounded rectangle around any child objects that are placed in it. It also demonstrates how to create views and layouts programmatically without using the layout xml files.
The class for RoundedRectangle layout object is as defined here:
|
||||
|
|
|
Thanks a lot to first answer. Here is modified version to convert a rectangular image into a square one (and rounded) and fill color is being passed as parameter.
|
|||
|
|
|
Romain Guy is where it's at. Minified version as follows.
|
|||||||||||
|
|
why not do clipping in draw()? Here is my solution:
code:
|
||||
|
|
protected by Luksprog Dec 19 '12 at 9:23
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
