[android-developers] Can't get iTunes on my Android phone!

2010-05-27 Thread FILBERT
HELP! -- 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+unsubscr...@googlegroups.com For more options,

[android-developers] Re: Unable to emulate Hello, Android

2008-12-18 Thread filbert
Yeah, there's a few threads on this in the Beginner's group and I'm sure there are some here. What you are seeing is the emulator startup screen (equivalent of BIOS maybe?) After that you get the Android startup screen which is the green android logo glowing. After that, the phone will finish

[android-developers] Re: Trouble getting values from a data driven Spinner

2008-12-17 Thread filbert
through all the values to determine which one is at the index I want to select. On Dec 17, 11:17 am, filbert filbert...@gmail.com wrote: I'm trying to set up a preferences page using a data driven Spinner. I've searched around and looked at some tutorials, but they all seem to be much simpler

[android-developers] Trouble getting values from a data driven Spinner

2008-12-17 Thread filbert
I'm trying to set up a preferences page using a data driven Spinner. I've searched around and looked at some tutorials, but they all seem to be much simpler examples. The data in my table looks like this: - id (primary key) - description (user friendly description of the option) - code (int

[android-developers] Re: How to send email programmatically?

2008-12-17 Thread filbert
Sunit, thanks for your writeups, they've been helpful. Your Code Snippet 1 for this new tutorial has some formatting issues, the last few lines are not in the code box. Also, does your code open the email client to send or does it send automatically? your code looks similar to what's posted

[android-developers] Re: Problem with the sqlite database

2008-12-17 Thread filbert
If you close your connection in onPause, wouldn't you need to open it again in onResume? On Dec 13, 6:08 pm, Paul paul_rash...@yahoo.com wrote: In order to play nicely with the resources you share with other applications I think you might want to consider creating your connection in onCreate,

[android-developers] Re: How to send email programmatically?

2008-12-16 Thread filbert
According to this page http://code.google.com/android/reference/available-intents.html the mailto: url is not supported by an intent... unless it was simply left off the list by accident. That is a possible explanation but my attempts to use mailto: in a URL result in errors.. unfortunately I