[android-developers] Re: Zooming with Google Maps Android API v2

2013-04-06 Thread VenomVendor
Change mMap.getUiSettings().setZoomControlsEnabled(false); to mMap.getUiSettings().setZoomControlsEnabled(true); -- -- 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 T

[android-developers] Re: supporting Google Maps Android API v2 on 2.3+

2013-04-11 Thread VenomVendor
Your app might crash if your device does not have latest Google Play Services *You can see the details tutorial here,* * *Getting Started with Google MapV2 for Android Apps On Wednesday, 10 April 2013 03:39:56

Re: [android-developers] Maps api key v1?

2013-04-21 Thread VenomVendor
It's easy you need not worry, even i had the same kind of thinking. *Check out my app in which i have used MapsV2 * when i ported, i felt much easier, you have to try this. http://venomvendor.blogspot.in/2013/04/generating-api-key-for-goog

Re: [android-developers] Maps api key v1?

2013-04-22 Thread VenomVendor
There is no other way, than porting to MapsV2. If you find any difficulty in anypart of MapsV2, We as a developer will support you to the best. I suggest you to post in the same thread rather than creating new thread. Before you Post, Search in StackOverflow

[android-developers] Re: publish app in google play with password requeriment

2013-04-22 Thread VenomVendor
Currently it's not possible, to restrict your apps being downloaded by User, Restriction is based only on Countries, API Level & Screen Dimensions. API Level & Screen Dimensions are to be mentioned in *AndroidManifest.xml* Restricting to Specific Countries can be set in GooglePlay *Developer Con

[android-developers] Re: Offline SDK installation

2012-03-22 Thread VenomVendor
Might be Late Reply, Very late reply, but surely will help u, Check out this Link Offline Installation of Android SDK's -- You received this message because you are subscribed to the Google Groups "Android Develop

[android-developers] Re: Offline SDK installation

2012-03-22 Thread VenomVendor
Might be Late Reply, Very late reply, but surely will help u, Check out this Link Offline Installation of Android SDK's -- You received this message because you are subscribed to the Google Groups "Android Develope

[android-developers] Re: single_apk_On_multiple_devices

2012-01-01 Thread VenomVendor
Remove images from the Folder drawable-mdpi, drawable-ldpi, Just put High Definition images in drawable-hdpi. i wld suggest u to test the APK file directly in the Tab, if u dont have, atleast configure the emulator Properly -- You received this message because you are subscribed to the Google Gr

[android-developers] Re: ADT Issues in Eclipse

2012-08-20 Thread VenomVendor
Check this link http://venomvendor.blogspot.in/2012/05/installing-android-plugin-in-eclipse.html#Offline -- 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 To unsubscrib

[android-developers] Re: ADT Issues in Eclipse

2012-08-20 Thread VenomVendor
Can you Uninstall NDK & try once, if not am sure you have a copy of Original Eclipse, Start form first again as in the above link. -- 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@goo

[android-developers] Re: help me to get android Map key

2013-06-22 Thread VenomVendor
This should help you http://venomvendor.blogspot.in/2013/04/generating-api-key-for-google-mapsv2.html On Friday, 21 June 2013 21:15:18 UTC+5:30, mansur wrote: > > Hi, > > I am trying get android google Map key, where II have followed all the > steps that mentioned > here

[android-developers] Re: Open popup window on the upper part of list view

2013-09-23 Thread VenomVendor
Visit http://stackoverflow.com/a/3619450/1008278 You are trying to use quickaction On Tuesday, 24 September 2013 00:48:39 UTC+5:30, Amit Mangal wrote: > > Hi there > I am having a list view inside my activity. Each row in list view having > one button. I want to open a popup window when button c

[android-developers] Displaying Google Map Android API V2 in fragment

2013-12-11 Thread VenomVendor
Have you solved it, if not. 1. Null the Map. 2. Destroy the fragment overriding in onDestroy method. -- 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 To unsubscribe f

[android-developers] Re: Displaying Google Map Android API V2 in fragment

2013-12-14 Thread VenomVendor
Hi, I have done same task, adding Map inside fragment, where fragment is placed inside ViewPager. public class Map extends Fragment { > > /** The view. */ > private static View view; > > /** The g map. */ > private static GoogleMap gMap; > > /** The bangalore. */ > privat

[android-developers] Re: Displaying Google Map Android API V2 in fragment

2013-12-14 Thread VenomVendor
17:08 (1 minute ago) Hi, I have done same task, adding Map inside fragment, where fragment is placed inside ViewPager. public class Map extends Fragment { /** The view. */ private static View view; /** The g map. */ private static GoogleMap gMap; /** The bangalore. */

[android-developers] Re: Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-14 Thread VenomVendor
You have to use *START_STICKY*which is a sticky service, also add flag *FLAG_FROM_BACKGROUND *while starting your service. when

[android-developers] Re: Displaying Google Map Android API V2 in fragment

2013-12-16 Thread VenomVendor
Black screen, 1. Your are not adding mapv2 correctly. Visit http://venomvendor.blogspot.com/2013/04/getting-started-with-google-mapv2-for.html 2. If you are getting Maps for the first time & not getting another time, i.e after switching between fragments, your are encountering this bug. http:/

[android-developers] Re: How to optimize image polling on the network for a gridview inside a view pager

2014-02-18 Thread VenomVendor
Use * Android-Universal-Image-Loader forget the rest.*I am using it for my several projects including heavy images that has to be loaded from drawables, this handles downloading, caching, memory & loading into UI in runtime. On Wed