[android-developers] Spinner custom view bug

2009-08-25 Thread twan
be returned by getBaseLine()? Kind regards, Twan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Re: TextView and not common characters?

2009-08-21 Thread twan
A little bump for me ;-) On Aug 20, 5:41 pm, twan twa...@gmail.com wrote: Good afternoon, I've got a little problem with encoding and displaying a not common characters. The following word comes from a html page which i download: Br#xFC;no Shows as followed in my browser: Brüno I

[android-developers] TextView and not common characters?

2009-08-20 Thread twan
, Twan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers

[android-developers] Re: 1244113800000l results in 2 different dates?

2009-06-05 Thread twan
in: 13:10 Am i doing something wrong here? Thanks, Twan On Jun 4, 7:41 pm, Jeff Sharkey jshar...@android.com wrote: The tomcat result is the right one. No, the Android time is correct: sh-3.1$ python import time print time.strftime(%H:%M, time.gmtime(1244113800)) 11:10 -- Jeff Sharkey

[android-developers] 1244113800000l results in 2 different dates?

2009-06-04 Thread twan
is the right one. Is androids Date class doing something spooky with the timezone. (my default timezone on emulator says GMT+00:00) Thanks, Twan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] Re: Passing pointer to AsyncTask that changes GUI to onRetainNonConfigurationInstance?

2009-06-03 Thread twan
step is still a bit crude, i might test a bit with lock/wait/ notify (if that works with services) or queuing results in the service. One problem with this whole setup that a service can only execute 1 task from 1 activity at a time. Cheers, Twan On Jun 3, 11:16 am, Mike Hearn mh.in.engl

[android-developers] Passing pointer to AsyncTask that changes GUI to onRetainNonConfigurationInstance?

2009-06-02 Thread twan
anybody give me advice on this subject? Kind regards, Twan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

[android-developers] Control which items to redraw? (notifyDataSetChanged with a range)

2009-05-28 Thread twan
Goodmorning, A call to notifyDataSetChanged() on a ArrayAdapter causes all items in a listview to redraw. This is quite ineffecient. At swing you can control which items (or which range of items) redraw. Is this also possible with android? Kind regards, TWan

[android-developers] Android default color madness, primary_text_light is color black?

2009-05-28 Thread twan
in a light color like white, not black ;-) When i change primary_text_light into primary_text_dark the text color becomes color white. Is this a bug in the naming of the default colors? Kind regards, Twan --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: Control which items to redraw? (notifyDataSetChanged with a range)

2009-05-28 Thread twan
Thanks all for the help! I'm going to give invalidate a try ;) On May 28, 6:17 pm, Romain Guy romain...@google.com wrote: No, notifyDataSetInvalidated() causes the entire content of ListView to disappear. It's even more inefficient than notifyDataSetChanged(). If you want to refresh the

[android-developers] When to use android:attr and android:style ?

2009-05-19 Thread twan
i'm not able to see my own messages in this group, only through google.com search result. Kind regards, Twan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: android.R.drawable -- safe to use?

2009-05-19 Thread twan
I think they are, otherwise they shouldn't be public available ;) On May 19, 9:41 pm, Howie howie.silb...@gmail.com wrote: Are the images in android.R.drawable considered safe for third-party developers to use? --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: When to use android:attr and android:style ?

2009-05-19 Thread twan
Hmm, i can now see my own message immediately ;) On May 19, 9:42 pm, twan twa...@gmail.com wrote: Hello, I got a little question on when to use style and android:theme in a layout xml file. For example: style=?android:attr/textAppearanceSmall does the same thing as: android:theme

[android-developers] Re: When to use android:attr and android:style ?

2009-05-19 Thread twan
Found it out myself, theme seems to apply to all, style only applies to one view. Handy! Cheers, Twan On May 19, 9:42 pm, twan twa...@gmail.com wrote: Hello, I got a little question on when to use style and android:theme in a layout xml file. For example: style=?android:attr

[android-developers] Prevent clearing Canvas in onDraw() ?

2009-05-14 Thread twan
when onDraw is called the next time. How can i make sure the circle drawn in a previous onDraw call stays in place? I rather not draw them all everytime, cause i'm actually not drawing circles but bitmaps. Thanks, Twan --~--~-~--~~~---~--~~ You received