Re: [android-beginners] stupid android question

2010-04-04 Thread Mahesh Dixit
Search for the Weather Widget from the Market. The free one shows only the weather and the donation one will give the one you see in HTC Sense UI On Sat, Apr 3, 2010 at 10:23 PM, Craig White white.n...@gmail.com wrote: I really like the retro clock/calendar/weather widget I see pictured on all

[android-beginners] Database version is zero on initial install

2010-06-05 Thread Mahesh Dixit
I have released an app (World Time) with initial database. Now i want to update the app with a database upgrade. I have put in the upgrade code in OnUpgrade() and checking for the newVersion. But it was not being called in my local testing... So i put in the debug statement to get the database

Re: [android-beginners] Re: Comparing data retrieved from SQL query

2010-06-19 Thread Mahesh Dixit
And just as safe method for avoiding NPE, its good practice to do the following... if(text.equals(queryString)) //do stuff On Fri, Jun 18, 2010 at 10:50 AM, Tollas tolla...@gmail.com wrote: Worked great! Thanks! On Jun 18, 11:12 am, Justin Anderson janderson@gmail.com wrote: You