[android-developers] Re: Touch Mode Won't Clear on ListView Item Tap (possible Bug)

2009-12-23 Thread iliketolearn
In both cases, the status of the individual row views seems to be the same: they are not focusable, they are not selected, they are not focusable in touch mode, they are shown, and save is enabled. I can't seem to find any differences between the two states (when tap will exit touch, and when it w

[android-developers] Touch Mode Won't Clear on ListView Item Tap (possible Bug)

2009-12-23 Thread iliketolearn
I've spent 3 days trying to figure this out to no avail. I've spent hours weeding through Android source code. Hopefully someone can shed some light. My listview uses custom views for the rows. When the application first loads, the listview is populated using a DB cursor and all works well (list i

[android-developers] Re: Parsing Speed: Reading InputStream vs. Converting InputStream to String

2009-07-23 Thread iliketolearn
Wow, this question went straight to the second page. This forum has really been growing rapidly. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] Parsing Speed: Reading InputStream vs. Converting InputStream to String

2009-07-23 Thread iliketolearn
I'm downloading text data from a web server, and getting an InputStream. The data will be relatively large and delimited. I want to split this data by the deliminator and store each piece in the DB. Is it faster to read the InputStream byte by byte to split the data and store each piece in the D

[android-developers] Strange Cupcake Memory Bug with WebViews (that disappears when debugger attached)

2009-05-15 Thread iliketolearn
I've literally spent 15+ hours trying to figure out this one bug (when I should be studying for finals). Any help is greatly appreciated. The bug appears on the dev1 phone running cupcake. It was not present before the upgrade. Basically, the problem is that when a activity with a webview and 2 th

[android-developers] Re: Can you requery a Cursor after the database object that created it is closed?

2009-03-17 Thread iliketolearn
Any help is appreciated. On Mar 15, 8:06 pm, iliketolearn wrote: > From my own quick tests, this seems to be the case. I just wanted to > confirm. > > Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

[android-developers] Can you requery a Cursor after the database object that created it is closed?

2009-03-15 Thread iliketolearn
>From my own quick tests, this seems to be the case. I just wanted to confirm. Thanks --~--~-~--~~~---~--~~ 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

[android-developers] Re: Activity Lifecycle in Regards to Process Lifecycle and GC

2009-01-13 Thread iliketolearn
Thanks Dianne, as usual your responses are prompt and helpful. --~--~-~--~~~---~--~~ 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 uns

[android-developers] Activity Lifecycle in Regards to Process Lifecycle and GC

2009-01-13 Thread iliketolearn
After reading the Android Activity documentation, I'm still a bit confused on Activity Lifecycles. Clarification on the two points below would be greatly appreciated. When the system is running low on memory, can it selectively choose to destroy an activity in the process, instead of the entire p

[android-developers] When to put a service into a separate process?

2009-01-12 Thread iliketolearn
At one of the Android Google IO sessions, Dan Morrill mentioned that it would be rare to need to do so, without providing much more info. Also, the posts from Google/Android employees in this forum don't recommend doing this either, often citing "overhead." The official android documentation doesn

[android-developers] Threads, Message Queue, and Loopers

2009-01-01 Thread iliketolearn
I have a few questions and points of clarification. Any help is appreciated. 1) Does each thread have it's own message queue? Does each process have it's own message queue? Or, is there simply 1 global system message queue? 2) If there are in fact multiple message queues, when there is a System