Re: [android-developers] Re: ViewPager and setClipChildren(false)

2012-08-29 Thread Dave Smith
Which is why we will all be eagerly watching the bug that Mark filed in anticipation :) Cheers, Dave Smith @devunwired On Wednesday, August 29, 2012 3:24:50 AM UTC-6, Romain Guy (Google) wrote: > > Note that using software layers comes at a performance and memory cost. > > > On Tue, Aug 28, 2012

Re: [android-developers] Re: ViewPager and setClipChildren(false)

2012-08-29 Thread Romain Guy
Note that using software layers comes at a performance and memory cost. On Tue, Aug 28, 2012 at 4:45 PM, Dave Smith wrote: > Thesalan - > > Calling setLayerType() on just the View will work, but you have to do it > on the correct view. In this case, the issue that doesn't work with > hardware

[android-developers] Re: ViewPager and setClipChildren(false)

2012-08-29 Thread Thesalan
Exactly! Thanks Dave! Le mercredi 29 août 2012 01:45:11 UTC+2, Dave Smith a écrit : > > Thesalan - > > Calling setLayerType() on just the View will work, but you have to do it > on the correct view. In this case, the issue that doesn't work with > hardware acceleration is the parent ViewGroup c

[android-developers] Re: ViewPager and setClipChildren(false)

2012-08-28 Thread Dave Smith
Thesalan - Calling setLayerType() on just the View will work, but you have to do it on the correct view. In this case, the issue that doesn't work with hardware acceleration is the parent ViewGroup clipping its children, so the PagerContainer in the example is the view that you need to call it