[android-developers] setAccuracy vs setHorizontalAccuracy

2013-11-05 Thread Palmer Eldritch
setAccuracyhttp://developer.android.com/reference/android/location/Criteria.html#setAccuracy%28int%29 Indicates the desired accuracy for latitude and longitude. Accuracy may be ACCURACY_FINE if desired location is fine, else it can be ACCURACY_COARSE. More accurate location may consume more

[android-developers] Re: memory issue with Google Maps API v2

2013-11-05 Thread lbendlin
Have a look at how it is done in iOS. There you can have as many annotations as you want, and the system will only render the associated markers if they are actually on screen. In addition you want to limit the number of visible markers when you zoom out. Generally anything over 50 will be

[android-developers] Re: avoiding screenshot duplication on market: 10 tablet, 7 tablet and phone screenshots all show with phone and laotop access

2013-11-05 Thread firebreather
yes. that way nobody misses an image in case they don't go through all the images for all three formats. the site shows tablet images first when accessed from the web, even from a phone, and those are hard for me to create as I have to use an emulator, which takes hours sometimes just to get

[android-developers] Drawing rapidly into Bitmap from non-UI thread results in Cannot generate texture from bitmap

2013-11-05 Thread Michael Zoech
Hi, In my current application that I'm developing I draw into an android.graphics.Bitmap object from a non-UI thread. This is done from native code via the AndroidBitmap_lockPixels and AndroidBitmap_unlockPixels calls. Every time the drawing has finished, the UI thread gets notified that the

[android-developers] Secure JSON - Light-weight replacement for the missing XML DSig support

2013-11-05 Thread Anders Rundgren
Docs + Demo:https://mobilepki.org/jcs Source:http://webpki.org/downloads/secure-json-4-android-v1.00.zip Usage in an application:https://play.google.com/store/apps/details?id=org.webpki.mobile.android Anders -- You received this message because you are subscribed to the Google Groups

[android-developers] Google Tasks API : How to indent a Task?

2013-11-05 Thread Mike
I'm trying to create a Task in a TaskList that is *indented*: Task task = new Task(); task.setParent( prevId); 'prevId' is the id of the task added right before this one above. Its creates the task but it is not indented. I see in the documentation that 'parent' 'previous' are optional

Re: [android-developers] Re: memory issue with Google Maps API v2

2013-11-05 Thread Mukesh Srivastav
Not sure about your actual requirement of placing thousand's of marker, as far i implemented, I have considered a radius based marker, like searching for Hotel,fuel stations in a radius of 10 miles or 5 miles. On Tue, Nov 5, 2013 at 6:07 PM, lbendlin l...@bendlin.us wrote: Have a look at how