[android-developers] Re: Getting the email address of the Google Account tied to the handset

2009-07-07 Thread Mike Garcia
Have you considered using the unique phone id rather than the g acct? The phone id is a much more reliable method especially since tthe email can be changed with a phone reset. On Tuesday, July 7, 2009, mscwd01 mscw...@gmail.com wrote: Hey, Simple question - but i'm finding it difficult

[android-developers] Re: Adobe Flash

2009-07-07 Thread Mike Garcia
No official word has come from the android team but I believe it safe to assume that in the coming months it is quite plausible that an ota update could be announced to coincide with the Hero's release that would provide support for flash. Being a web developer in my day job, I'm still not sure

[android-developers] Re: How to get current time?

2009-06-10 Thread Mike Garcia
Or you can do something like this... Date d = new Date(); d.getTime(); I personally prefer this but only because I have access to other functions for outputing the time in a human readable form without having to write a bunch of extra code. 2009/6/9 Mike Lanin mike.la...@gmail.com Thanks!

[android-developers] Re: Help with Hello Android app

2009-06-10 Thread Mike Garcia
Rebuild your project and then try to recompile. I had similar problems the first time I ran my app in 3.4 with the latest sdk. On Tuesday, June 9, 2009, Pavan pavan.tamm...@gmail.com wrote: I tried all different possibilities but i can't get the hello android to work. I am using eclipse

[android-developers] Re: SDK 1.5 and Eclipse problem

2009-06-10 Thread Mike Garcia
Did you set your path in system settings? On Wednesday, June 10, 2009, jphdsn jph...@gmail.com wrote: Hi, I'm just trying the SDK 1.5 with a new installation of Eclipse and the eclipse plugin When I import a project and run it, I have an error message : [2009-06-10 12:20:09 - Lunc] The

[android-developers] Re: Justify a TextView?

2009-06-03 Thread Mike Garcia
(typesetting) Thanks, Anna -- Mike Garcia There is no coincidence! --~--~-~--~~~---~--~~ 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

[android-developers] Re: is upgrade to 1.5 safe???

2009-06-03 Thread Mike Garcia
: hi, i am saurav mukherjee n i am working on a g1 mobile on android. there is a dialog box appearing for upgrading the os to 1.5. i jus wanted to know if anybody has done the same and is it safe (ie if the 1.5 os version is stable)? -- Mike Garcia There is no coincidence

[android-developers] Re: SimpleCursorAdapter and setListAdapter problems

2009-03-19 Thread Mike Garcia
[] to = new int[] { R.id.client_row_title, R.id.client_row_body }; // Now create an array adapter and set it to display using our row SimpleCursorAdapter clients = new SimpleCursorAdapter(this, R.layout.client_row, c, from, to); setListAdapter(clients); } -- Mike Garcia

[android-developers] Re: first app

2009-03-10 Thread Mike Garcia
Check the android-beginners group on google and also go through the sample HelloWorld tutorials on the developers site. On Tue, Mar 10, 2009 at 6:06 AM, Jignesh Kakkad jig2n...@gmail.com wrote: Dear All, Can you guide me from where to start writing application using Android SDK? Waiting