40,716 reputation
484109
bio website curious-creature.org
location Mountain View, CA
age 31
visits member for 4 years, 4 months
seen 12 hours ago
stats profile views 15,345

Android engineer at Google.


14h
awarded  canvas
22h
comment Drawable vs Single reusable Bitmap better with memory?
The fact that bitmaps were allocated on the native heap did not lead to memory leaks. It simply meant you would have to wait for finalizers to run before the bitmap would be freed.
May
18
comment Change bit depth from Bitmap
If you don't have translucent pixels there is no reason to make it 32 bits. A 32 bits format is 24 bits for RGB (colors) + 8 bits for alpha (translucency.) If you want to preserve quality encode your image using the PNG format instead of JPEG.
May
18
answered canvas.scale() not working properly
May
18
revised Change bit depth from Bitmap
added 110 characters in body
May
18
comment Change bit depth from Bitmap
This just means you don't have an alpha channel. Colors are encoded using 24 bits in both cases.
May
18
comment Change bit depth from Bitmap
If you are testing your code on an older version of the platform your JPEG will be decoded in 565 format by default (16 bits). Since you are not passing your BitmapFactory.Options to the decode method, it will remain in 16 bits format. Newer versions of Android always decode in 8888 by default.
May
18
answered LinearGradient and transperent colors in TextView
May
18
answered Change bit depth from Bitmap
May
13
awarded  Good Answer
May
13
awarded  Populist
May
13
comment How to handle an AsyncTask during Screen Rotation?
AsyncTask came from UserTask. I originally wrote UserTask for my own apps and later turned it into AsyncTask. Sorry about that I forgot it got renamed.
May
11
comment View too large to fit into drawing cache when calling getDrawingCache()
To make sure it works in all situations you should also call measure() before layout().
May
1
comment With default resources in the drawable folder (MDPI sized) what's the point of the drawable-mdpi folder?
@Bevor, that is incorrect. If a new format like xxhdpi is introduced, Android will pick drawable from the closest density (xhdpi for instance) and scale the images up.
Apr
30
awarded  Revival
Apr
23
awarded  Nice Answer
Apr
18
comment Blurry offset paths when canvas is scaled under hardware acceleration
It is the intended behavior, but not the desired behavior :) This is something I plan on fixing in a future release of Android. We will also provide better documentation on what's supported and what's not supported in the hardware renderer across multiple API levels.
Apr
18
answered When using clipToPadding in ListView's the items get recycled prematurely
Apr
18
comment Drawing LinearLayout with rounded corners
You are applying the blend modes directly against the framebuffer. You are seeing black because the window is opaque. One way to do it would be to do your drawing into an intermediate transparent bitmap.
Apr
18
answered Blurry offset paths when canvas is scaled under hardware acceleration