[android-developers] Re: Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml

2009-11-02 Thread Zod
variable set. Let's hope it get resolved soon. Zod On Nov 1, 2:46 pm, Jay pathomp...@gmail.com wrote: Try export GDK_NATIVE_WINDOWS=true before running android sdk manager. It fixes both the save button and the install button for me. For more details please seehttps://bugzilla.gnome.org

[android-developers] Re: Mapview deprecated

2009-08-28 Thread Zod
Hi! To achive the same functionality use this code instead: mapView = (MapView) findViewById(R.id.MapView); mapView.setBuiltInZoomControls(true); As a side effect you don't need to put the mapview in a relative layout with a view for the zoom controls. Just put the mapview anywhere in your

[android-developers] Re: buttons on mapview overlay

2009-08-27 Thread Zod
Hi! The easiest way to put buttons on your map is to use a RelativeLayout. Put the MapView into it and after that you can put there other layout objects too. In the RelativeLayout the view you put after the map view can be over it, so you can draw anything over the map this way, and you don't

[android-developers] Re: Overlay ConcurrentModificationException (continued)

2009-08-27 Thread Zod
Hi! It's not clear where your code is located and called. If it's in the thread which receives the messages, than you're modifying UI elements from another thread which is really bad. If your code is in the activity object, and you call it directly from the network thread, than you also execute

[android-developers] Re: Database for an online application

2009-08-27 Thread Zod
Hi! I was developing an application quite similar to yours. Although I had to freeze the project because I'm becoming a father in the coming weeks, and it sure messed up my project schedules :) I had a site up and running with php and on top of that with the zend framework, which received and

[android-developers] Re: Too many PNGs in res/drawable?

2009-08-27 Thread Zod
Hi mark23, I'm just curious. What do you want to do which requires sooo incredible amount of icon states ? I completely aggree with Dianne about the totally unreasonable thing to do part. Wasting memory in a desktop application is a bad thing, however nobody may notice a leak of a few tens of

[android-developers] Broadcast on SIM state change

2009-07-11 Thread Zod
Hi, Am I right if I say that, there is no broadcast action currently for the SIM card state changes ? Thanks, Zod. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] Re: switch between GPS and Networkprovider

2009-07-05 Thread Zod
to solve data passing and synchronization between the two LocationListeners somehow. If you need further help you can contact me in private. Zod. On Jul 5, 12:56 am, mnish twan...@gmail.com wrote: Hi, I wanted to know how to switch beteen GPS and Network  providers. Iam now busy

[android-developers] Re: Questions on applications and how applications are to follow hardware limitations?

2009-07-05 Thread Zod
Thanks Mark for the answer. I posted my reply on Android Discuss too, but it haven't got in yet. Zod. On Jul 4, 8:41 pm, Mark Murphy mmur...@commonsware.com wrote: Zod wrote: I have a somewhat related question. I posted a reply over on [android-discuss], since this is not really

[android-developers] Re: Questions on applications and how applications are to follow hardware limitations?

2009-07-04 Thread Zod
, and if I choose to use it, will I be out in the cold alone to sell it somehow outside the Market ? Or should I just use the base framework as it is and hope that my app will integrate well with the changes the manufacturer made ? Thanks for the answers. Zod. On Jul 3, 12:56 am, Dianne Hackborn

[android-developers] Re: PendingIntent.getService not working ...

2009-07-01 Thread Zod
Hi! This code works for me: (although I initialize the alarm in the same service which I want to wake up with the alarmmanager). AlarmManager alarmManager = (AlarmManager) getSystemService (ALARM_SERVICE); Intent intent = new Intent(TrackerService.this, TrackerService.class);

[android-developers] Re: Alarm Manager

2009-07-01 Thread Zod
time there is a change in the alarms or if one is fired it recalculates which alarm comes next and registers it. So it always uses only one PendingIntent which targets a BroadcastReceiver which in turn fires the appropriate alarm. I hope this helps. Zod

[android-developers] Re: Alarm Manager

2009-07-01 Thread Zod
at 9:10 AM, Zod zsolt.ba...@gmail.com wrote: When You pass a PendingIntent to the AlarmManager, if there is already one with the same Intent already registered the former will be canceled and the last will be the active one. Two pending intent is the same (in the case of an explicit intent