[android-developers] Excessive delay setting brightness: 173ms, mask=2

2012-08-27 Thread jean-francois labbe
I've found this error on my nexus S jelly bean logs. E/PowerManagerService(260): Excessive delay setting brightness: 173ms, mask=2 it appears every time I turn on or off the screen. What does it mean? -- You received this message because you are subscribed to the Google Groups "Android Devel

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-07-04 Thread jean-francois garreau
Store them as member variables > - Access in the adapter's getView, like itemView.mText1, itemView.mText2 > -- rather than doing itemView.findViewById(...) > > -- K > > 2012/7/3 jean-francois garreau > >> I already saw that presentation and I can't use the

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-07-03 Thread jean-francois garreau
Ok thank you So first of all i think that as I didn't identify what's causing all my GC I will not solves this UI problem. But After, i will try your solutions. regards Le mardi 3 juillet 2012 14:45:22 UTC+2, Daniel Drozdzewski a écrit : > > > On 3 July 2012 13:40, Mark Murphy wrote: > >> On T

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-07-03 Thread jean-francois garreau
.. I will look deeper into that direction and after, i will look at your advice with SpannableStringBuilder regards Le mardi 3 juillet 2012 14:24:38 UTC+2, Mark Murphy (a Commons Guy) a écrit : > > On Tue, Jul 3, 2012 at 7:48 AM, jean-francois garreau > wrote: > > Ok so can you p

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-07-03 Thread jean-francois garreau
wHolderPattern if my view inherites from view and don't have any view element in it ? regards Le mardi 3 juillet 2012 13:20:55 UTC+2, Mark Murphy (a Commons Guy) a écrit : > > On Tue, Jul 3, 2012 at 7:16 AM, jean-francois garreau > wrote: > > I already saw that presentatio

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-07-03 Thread jean-francois garreau
, Daniel Drozdzewski a écrit : > > On 2 July 2012 12:20, jean-francois garreau < > jean.francois.garr...@gmail.com> wrote: > >> little Up beacause not fixed >> >> Le jeudi 28 juin 2012 16:12:35 UTC+2, jean-francois garreau a écrit : >>> >>

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-07-02 Thread jean-francois garreau
little Up beacause not fixed Le jeudi 28 juin 2012 16:12:35 UTC+2, jean-francois garreau a écrit : > > The problem is : as I'm creating my custom view heriting from View, I > don't have any findById so the pattent viewHolder won't be useFull for me :( > > And I

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-06-28 Thread jean-francois garreau
n the instance of my view. Le jeudi 28 juin 2012 15:58:53 UTC+2, MagouyaWare a écrit : > > Nope... http://lmgtfy.com/?q=android+viewholder+pattern > > Thanks, > Justin Anderson > MagouyaWare Developer > http://sites.google.com/site/magouyaware > > > On T

[android-developers] Re: Problem optimizing views for having a fast scroll

2012-06-28 Thread jean-francois garreau
, kmUnit); } else { subView = (ObjectSubViewNew) convertView; } } ? Le jeudi 28 juin 2012 14:27:14 UTC+2, jean-francois garreau a écrit : > > Hi everyone, > > I have a problem for optimzing my application. More par

Re: [android-developers] Re: 32bit PNG in CS5

2012-02-05 Thread Jean-Francois Im
Set Photoshop to use 8 bits and use File > Save for Web and Devices... to export your file. On Sat, Feb 4, 2012 at 18:09, Oliviu Vais wrote: > I dont get it. So what do i have to do? > > On Feb 4, 10:38 pm, Romain Guy wrote: >> In PS 8 bits means 8 bits per channel. So 8 bits * 4 (RGBA) = 32 bit

Re: [android-developers] 32bit PNG in CS5

2012-02-05 Thread Jean-Francois Im
I think the text in CS5 is a bit misleading, it refers to 32 bit per channel(ie. 96 bits for R, G and B all together) whereas Android expects 32 bit total(ie. 8 bit per channel, 32 bits total for R, G, B and A). In Photoshop CS5, you can save it as a PNG with an alpha channel using File > Save for

[android-developers] ActivityInstrumentationTestCase2 and FragmentActivity

2011-03-11 Thread Jean-Francois
Hi, I just started experimenting with the new fragment static API. Whenever I try to use ActivityInstrumentationTestCase2 with a FragmentActivity I get a "RuntimeException: Exception during construction error". Is it supposed to work? Cheers, Jean-Francois -- You received this messa