[android-developers] web browser and dialog theme

2008-04-02 Thread dr123
Hi, I have an acivity which opens another floating activity which opens a web browser intent. After the back button from the webbrowser there is the floating activity and beneath it there are the checkered squares and not the first activity. Any thoughts as why this is happening? can i do someth

[android-developers] Re: status bar

2008-04-01 Thread dr123
s included in the layout of each of your activities. > > On Mar 31, 11:04 am, dr123 <[EMAIL PROTECTED]> wrote: > > > any idea how i can have a "permanent" view independent of activities > > much lika a status bar on a windows program (not the mobile phone's

[android-developers] status bar

2008-03-31 Thread dr123
any idea how i can have a "permanent" view independent of activities much lika a status bar on a windows program (not the mobile phone's status bar with icons). It is meant to have info about the program status and the user's points for example and that can be updated from a service. I thought ab

[android-developers] Re: over my head with data please help

2008-03-31 Thread dr123
thank you anthony, that's what i did there was no other way... i have the user type in some letters and then try a LIKE %string% search... I hope this also help others cause the country/city thing is something common. On 31 Μαρ, 18:22, acopernicus <[EMAIL PROTECTED]> wrote: > Here's an excellent

[android-developers] Re: over my head with data please help

2008-03-29 Thread dr123
i did it with digit's suggestion xmlrpc and a few characters to narrow the search. thanks for the support ps this spinner fix is very important...you hear me google guys?:) On 29 Μαρ, 07:51, "Megha Joshi" <[EMAIL PROTECTED]> wrote: > >and second and most important: > > >i can't find a way to pr

[android-developers] Re: over my head with data please help

2008-03-28 Thread dr123
I guess > that a trie would be very appropriate here > (seehttp://en.wikipedia.org/wiki/Trie) > > 2008/3/28 dr123 <[EMAIL PROTECTED]>: > > > > > The database has around 2 million records. as a text file it's more > > than half the disk space of the andro

[android-developers] Re: over my head with data please help

2008-03-28 Thread dr123
. > > You can use the method onKeyDown(int keyCode, KeyEvent event) to catch > a key press event. You could then, query your data to retrieve a brief > set of cities (set a LIMIT on your query) and populate the Spinner > using and ArrayAdapter. Just an idea... > > On Mar 28, 11:

[android-developers] over my head with data please help

2008-03-28 Thread dr123
Hi, i'm again the guy with the 8mb question. actually it's not 8mb it's a little larger but here is my problem to which i can't get any solution. I need to have the user choose his country and then populate "something" with all the cities of the country. In order to be exact, i have a database wi

[android-developers] 8mb file

2008-03-27 Thread dr123
Is an 8mb file included with my app too much of a space? it is a text file with the list of all cities in the world. aris --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

[android-developers] Re: bug in calendar?

2008-03-24 Thread dr123
duh thanks, never thought i'd be caught unprepared like that :) On 24 Μαρ, 14:26, Robert Dorrian <[EMAIL PROTECTED]> wrote: > This is one of those weird Java things. Months are counted from 0, not > 1, so month 2 is March. > > On Mar 24, 12:01 pm, dr123 <[EMAIL PROT

[android-developers] bug in calendar?

2008-03-24 Thread dr123
c1 = Calendar.getInstance(); c1.setTimeZone(TimeZone.getTimeZone("GMT")); String nowDate = ((Integer)c1.get(Calendar.YEAR)).toString() +"-"+((Integer)c1.get(Calendar.MONTH)).toString()+"-"+ ((Integer)c1.get(Calendar.DAY_OF_MONTH)).toString()+" " + ((Integer)c1.get(Calenda