[android-developers] Re: How to make translucent control just like 'zoom' in Pictures

2009-03-29 Thread Lukasz Mosdorf
Hi I guess that this would be sth like this: addContentView(_anotherLayer, new LayoutParams (LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); and _anotherLayer is for example an object which extends View. Then you need to draw transculent stuff on this layer.

[android-developers] Re: How to make translucent control just like 'zoom' in Pictures

2009-03-29 Thread Ren
Thanks, I'll try On Mon, Mar 30, 2009 at 4:46 AM, Lukasz Mosdorf lukasz.mosd...@gmail.comwrote: Hi I guess that this would be sth like this: addContentView(_anotherLayer, new LayoutParams (LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); and _anotherLayer

[android-developers] Re: How to make translucent control just like 'zoom' in Pictures

2009-03-29 Thread Ralf
You can use a FrameLayout in your XML to layer widgets or sub-layouts on top of each others. R/ On Sun, Mar 29, 2009 at 8:54 PM, Ren rens...@gmail.com wrote: Thanks, I'll try On Mon, Mar 30, 2009 at 4:46 AM, Lukasz Mosdorf lukasz.mosd...@gmail.com wrote: Hi I guess that this would be