[android-developers] CustomHttpClient throwing timeout exception

2013-05-08 Thread Grontag
I have this CustomHttpClient class, which I found in the net: public class CustomHttpClient { public static final int HTTP_TIMEOUT=1; private static HttpClient mHttpClient; private static HttpClient getHttpClient(){ if(mHttpClient==null){ mHttpClient = new DefaultHttpClient(); final

[android-developers] Draw icons depending of zoom

2012-03-08 Thread Grontag
Hi all. I am developing an application that draws icons on a map. But i need to draw them dynamically: if the user does zoom in the map, if zoomLevel is > 10, draw this icon, in other case draw that other icon. I've been the whole morning reading and searching the web, and found nothing that works