[android-developers] Editable WebView or a reasonable facsimile thereof?

2012-04-25 Thread FractalBob
Anyone know if there is an editable WebView somewhere in the wild or if Google has plans to make the standard WebView editable? I need such a creature for an app I'm working on (my app is based on K9 Mail, which uses an extension of WebView). Mozilla provides an editable browser-type window to its

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-25 Thread Simon Platten
Hi, The RMC message contains a status parameter, this is either V=data not valid or A=data valid. You need to wait until you read an A in the RMC, before this you will not get a ZDA message even if you have enabled it. To enable RMC messages: $PSRF103,04,00,01,01 Once you get an A in the RMC

[android-developers] onSearchRequested() result in same activity

2012-04-25 Thread Live Happy
i have implement in my application the search method onSearchRequested() via list and it work well and i create 2 activity one for list data and another for the search result in that form public class acitvity1 extends InterfaceBase { @Override ListAdapter makeMeAnAdapter(Intent

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-25 Thread StarTraX
Further, here are the sentence types I do get: GPGSA, GPGGA, GPGLL, GPRMC, GPGSV, GPVTG. The SiRF manual indicates the ZDA message is only provided to the GSW2 software versions 2.3.2 and above - maybe that's not being implemented on the phones. On Wednesday, April 25, 2012 3:43:34 PM UTC+10,

[android-developers] Could not stat dex cache directory '/data/dalvik-cache': No such file or directory

2012-04-25 Thread Mamatha K
Dear All, Kindly help me in solving the below problem. I use sdcard for booting android on blaze. When android boots, the below issue is seen. The logcat is logcat - beginning of /dev/log/main I/DEBUG ( 111): debuggerd: Apr 24 2012 17:35:29 E/installd( 118): Could not create

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-25 Thread Simon Platten
If ZDA isn't implemented or supported then you are really out of luck as the time from the GPS could be out significantly also add to that the lag in sending and receiving the NMEA message. We use the 1PPS pulse at work to synchronise remote devices in the field, once we lock on with the RMC the

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-25 Thread StarTraX
Sy. Now you've got me really confused! I don't understand ..*sending*... the NMEA message. In my code I'm just listening for the NMEA sentence in an NMEA listener. There's no sending involved here is there? On what sort of device are your receiving the ZDA sentence? On Wednesday, April

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-25 Thread Simon Platten
Sorry, you are quite correct, I'm working with lots of protocols, a lot of which are polled, sorry for the confusion, you do just listen for and receive an NMEA message. The only sending involved is to enable specific messages. Our GPS receivers are embedded devices, I'm not absolutely sure of

Re: [android-developers] Why my phone must connet the power that the APP can work well?

2012-04-25 Thread deb-account
On 17/04/12 13:56, kaixinyang wrote: Why my phone must connet the power that the APP can work well? You should at least provide the following information: What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What version are you using?

[android-developers] How to receive UDP packet in Java from a C structure ?

2012-04-25 Thread Bibu
Hi, I would like to get back my object in my android application, this object is sent over udp from a native android application coded in C and running on the same device that the Android application. Here what I've done : *MyClass myData = new MyClass();* *byte[] buf = new byte[1];*

[android-developers] Re: Free of cost e-mail marketing tip

2012-04-25 Thread Dusk Jockeys Android Apps
Thanks so much for spamming this group with exact details about how you are spamming this group. On Apr 23, 5:19 pm, Lelaina Pierce laney...@gmail.com wrote: Email marketing is one of the highly used medium to reach thousands of peoples through internet but it isn’t that much effective in most

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-25 Thread Andrew Gregory
Yeah, I'm pretty sure you can't send commands to the Android GPS device. You'd probably need to be root and figure out the underlying device. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] onSearchRequested() result in same activity

2012-04-25 Thread Kostya Vasilyev
If you're on API 11 and higher, you can use this to be notified when the user submits a query: http://developer.android.com/reference/android/widget/SearchView.html#setOnQueryTextListener(android.widget.SearchView.OnQueryTextListener)

Re: [android-developers] AlphabetIndexer with Custom Adapter managed by LoaderManager

2012-04-25 Thread Kostya Vasilyev
How does it error out? A crash? What's the stack trace? In general, the fast section indexer does not update its sections list automatically when you replace the cursor. There is no method to force this except turn it off and the back on after you've changed the data. -- K 25.04.2012 11:02,

Re: [android-developers] Radio buttons in list - need only one selectable button

2012-04-25 Thread Mark Murphy
On Tue, Apr 24, 2012 at 9:22 PM, Farhan Tariq farhan@gmail.com wrote: Sadly, there isnt much customization that I can do with it. I googled that up, and all seem to use android.R.layout.simple_list_item_single_choice layout for the purpose. Which is a CheckedTextView -- you can examine the

Re: [android-developers] Editable WebView or a reasonable facsimile thereof?

2012-04-25 Thread Mark Murphy
On Wed, Apr 25, 2012 at 2:11 AM, FractalBob ruom...@gmail.com wrote: Anyone know if there is an editable WebView somewhere in the wild or if Google has plans to make the standard WebView editable? I need such a creature for an app I'm working on (my app is based on K9 Mail, which uses an

Re: [android-developers] getInstalledPackages(PackageManager.GET_ACTIVITIES) - PackageManager has died!?

2012-04-25 Thread Mark Murphy
On Wed, Apr 25, 2012 at 1:12 AM, 3c ccouno...@gmail.com wrote: Here is a crash report I received today while my app runs: pm.getInstalledPackages(PackageManager.GET_ACTIVITIES); Can someone tell me how to resolve this? My interpretation of the crash is that either: -- The user has too many

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-25 Thread StarTraX
I've been reading up on the GPS signal structure, and it's true that it takes 12 1/2 minutes for the full sequence, but... and this is a big but... the GPS time and GPS/UTC offset are sent with every sub frame, and they come by every six seconds. So you can forget about waiting 12 1/2 minutes.

Re: [android-developers] Editable WebView or a reasonable facsimile thereof?

2012-04-25 Thread Kostya Vasilyev
Another way probably worth looking into is to use spans. For example: http://developer.android.com/reference/android/text/style/UnderlineSpan.html http://developer.android.com/reference/android/text/style/TextAppearanceSpan.html ... and so on. -- K 25.04.2012 15:05, Mark Murphy написал: On

Re: [android-developers] onSearchRequested() result in same activity

2012-04-25 Thread Live Happy
may u give more details pls coz is not much clear till now and if i plan to put the activity one in tab host and mak tthe result search activity2 appear in same tab host how make that coz i try the group acitvity but didnt work with me On Wed, Apr 25, 2012 at 12:50 PM, Kostya Vasilyev

[android-developers] Single report after rerunning CTS failures

2012-04-25 Thread srikanth
Hi All, Is there a way in CTS 4.0.3R2 to produce a single report after rerunning CTS failures instead of creating a new report after rerunning all failures from previous CTS report. Thanks in advance. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] admob in android sdk 2.2

2012-04-25 Thread Narendra Singh Rathore
Hi all, Can anybody please tell if it is possible to use adView with android sdk 2.2. I have recently upgraded adView library from Admob Sdk 4.0 to sdk 6.0, so it is giving the error as follows: *you must have AdActivity declared in AndroidManifest.xml with configChanges.* which later, after

[android-developers] Contact UI Question

2012-04-25 Thread Mark Phillips
In my application, I need to collect information about (most likely) new people for the phone's contact database (eg players on a sports team). I see how to add the information using the Contacts API ( http://developer.android.com/resources/articles/contacts.html). I was thinking of adding the

[android-developers] Re: Editable WebView or a reasonable facsimile thereof?

2012-04-25 Thread FractalBob
I know about spanned text and I'm prepared to use EdiText only if I have to, but my question is about a true editable WebView, which would facilitate my app immensely. On Apr 25, 4:32 am, Kostya Vasilyev kmans...@gmail.com wrote: Another way probably worth looking into is to use spans. For

Re: [android-developers] Scan Slider action be applied on a view.

2012-04-25 Thread tarun sablok
Ok I got it one last thing lets suppose I have my handle as LinearLayout in horizontal fashion with 3 images on which i have to handle the animations like swipe animations left and right ..is it possible ...(IN this screnario my content is hidden and only my handle is visible )

[android-developers] Total Available memory for Memory Management logic.

2012-04-25 Thread Anieeh
Hi all I am having problem with releasing memory problem, i have a Hashmap in which i am adding Bitmap object, and the no. of bitmaps are quite large. for this reason i am getting OutOfMemoryError. So for this i have decided to release Bitmap whic is least used from Collection, on memory

Re: [android-developers] Total Available memory for Memory Management logic.

2012-04-25 Thread Latimerius
I asked a similar question recently: http://groups.google.com/group/android-developers/browse_thread/thread/5c26876b19de1a4d/d843121085218de7?lnk=gstq=bitmap.recycle#d843121085218de7 Check it out, Romain gave some good explanations there. If you'd just like to free some memory on out-of-memory

Re: [android-developers] setPreviewCallback - onPreviewFrame returning byte array

2012-04-25 Thread Justin Anderson
Seems to me everything you need is nicely documented... http://developer.android.com/reference/android/hardware/Camera.PreviewCallback.html#onPreviewFrame%28byte[],%20android.hardware.Camera%29 Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr

[android-developers] Re: sensor data logging to SD card 6x to 10x slower after Nexus S gets update to ICS

2012-04-25 Thread greg
For the record, rebooting with a momentary battery removal restored the sensor data acquisition rate to the previous rate. (In other words, I thankfully do not have to revert back to a prior OS version in order to acquire sensor data at the rate my application requires.) On Monday, April 9,

[android-developers] BitmapFactory.Options inTempStorage

2012-04-25 Thread Jim Graham
While working on trying to squeeze in as much space for processing bitmaps in my app, I noticed this method, and from what I've read, believe it might help. What I have not found, however, is a real (and clear) description of what it does, and how to best use it. The dev guide page suggests

Re: [android-developers] BitmapFactory.Options inTempStorage

2012-04-25 Thread Justin Anderson
I don't know for sure, but I would assume that is because it doesn't decode the entire 9 MB image at once... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Apr 25, 2012 at 11:15 AM, Jim Graham spooky1...@gmail.com wrote: While working on trying

Re: [android-developers] Unknown Android Packaging Problem: java.lang.ArrayIndexOutOfBoundsException: 13

2012-04-25 Thread Rohit Lagu
Hi Shantanu, I have check Create Test Project option run application it works. :) :) :) :) :) https://lh3.googleusercontent.com/-nB3iCOiCgV0/T5g0pb4BbxI/AXY/j-AAAIHKUQQ/s1600/2012-04-25_22-32-49.jpg Now New problem arise. While Testing on Device i got many instance of my attached

[android-developers] Re: Total Available memory for Memory Management logic.

2012-04-25 Thread Anieeh
Thanks Latimerius For your quick reply, yes i need an early warning (even before you actually run out of heap) because after an error occur OutOfMemory and then if i release some memory and restart the same operation it will give the same error since the GC wont collect the free memory as soon

[android-developers] Re: ndk, shared library's global variables persist

2012-04-25 Thread Chris Stratton
On Tuesday, April 17, 2012 11:59:42 AM UTC-4, Anatoliy Lysenko wrote: Hi, In my NDK project I have two global variables, int and pointer. When I install my app and run it for first time, all global variables are empty. When I exit app and start it again, in both variables stored values

Re: [android-developers] getInstalledPackages(PackageManager.GET_ACTIVITIES) - PackageManager has died!?

2012-04-25 Thread 3c
Well, I reverted the call to getInstalledPackages(0); Then manually retrieved the activity I was interested in, as I knew in advance which one to look for. A flawed firmware why not, but just exceeding 1MB of activity data seems unreasonable? My kids have installed 300+ games on their tablets

Re: [android-developers] getInstalledPackages(PackageManager.GET_ACTIVITIES) - PackageManager has died!?

2012-04-25 Thread Mark Murphy
On Wed, Apr 25, 2012 at 3:06 PM, 3c ccouno...@gmail.com wrote: A flawed firmware why not, but just exceeding 1MB of activity data seems unreasonable? My kids have installed 300+ games on their tablets and there's still like 70% free space! Though not such issue on those tablets. So 1MB of

Re: [android-developers] Re: Total Available memory for Memory Management logic.

2012-04-25 Thread Latimerius
On Wed, Apr 25, 2012 at 8:16 PM, Anieeh animesh.andr...@gmail.com wrote: Thanks Latimerius   For your quick reply, yes i need an early warning (even before you actually run out of heap) because after an error occur OutOfMemory and then if i release some memory and restart the same operation

Re: [android-developers] getInstalledPackages(PackageManager.GET_ACTIVITIES) - PackageManager has died!?

2012-04-25 Thread Dianne Hackborn
Why are you doing this? This is a terrible way to find out about an activity. What are you actually trying to do? Usually people use PackageManager.getIntentActivities() to get the set of activities they are interested in. On Wed, Apr 25, 2012 at 12:06 PM, 3c ccouno...@gmail.com wrote: Well,

[android-developers] Newbie Java question

2012-04-25 Thread g...@deanblakely.com
I'm a C# developer porting my app to Android. The method pasted below has a throws clause in the method signature. Although I've looked at the docs, I don't understand what it is doing. There is no throw in the method code. There is no Try Catch so it's not trying to quiet an exception. I

Re: [android-developers] Newbie Java question

2012-04-25 Thread Kostya Vasilyev
Google for java checked exceptions. -- K On 04/26/2012 01:24 AM, g...@deanblakely.com wrote: I'm a C# developer porting my app to Android. The method pasted below has a throws clause in the method signature. Although I've looked at the docs, I don't understand what it is doing. There is no

RE: [android-developers] getInstalledPackages(PackageManager.GET_ACTIVITIES) - PackageManager has died!?

2012-04-25 Thread Cedric Counotte
Why am I doing what ? getInstalledPackages(0), because I'm interested in specific package names with a predefined prefix, those may include a specific activity to configure the package. All the packages I'm looking for are app extension that I develop myself. So using getIntentActivities() is

[android-developers] newbie SQL Light Question

2012-04-25 Thread g...@deanblakely.com
I'm learning SQLLite using the NotePad tutorial appication. The code pasted below is very strange to me. I'm used to using SQL i.e. Select KEY_ROWID, KEY_TITLE, KEY_BODY from DATABASE_TABLE WHERE BLAH BLAH BLAH. One of the nice things about SQL is that it is pretty much the same between the

Re: [android-developers] newbie SQL Light Question

2012-04-25 Thread Justin Anderson
This is an abstraction so you don't have to build the SQL query yourself. If you want more flexibility you can use the rawQuery() method: http://developer.android.com/reference/android/database/sqlite/SQLiteDatabase.html#rawQuery%28java.lang.String,%20java.lang.String[]%29 Thanks, Justin Anderson

[android-developers] market:// scheme change to play://?

2012-04-25 Thread Karthz
Hello, WIll the market:// custom scheme be always supported? Or, will that be changed to play:// anytime soon? Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Newbie Java question

2012-04-25 Thread Lindsay Mathieson
On Wed, 25 Apr 2012 02:24:28 PM g...@deanblakely.com wrote: public NotesDbAdapter open() throws SQLException { mDbHelper = new DatabaseHelper(mCtx); mDb = mDbHelper.getWritableDatabase(); return this; } One or both of the function calls (getWritableDatabase

[android-developers] Re: Newbie Java question

2012-04-25 Thread g...@deanblakely.com
Kostya, thanks. I will never use a checked exception (being a C# programmer). Gary On Apr 25, 2:31 pm, Kostya Vasilyev kmans...@gmail.com wrote: Google for java checked exceptions. -- K On 04/26/2012 01:24 AM, g...@deanblakely.com wrote: I'm a C# developer porting my app to Android.  

Re: [android-developers] newbie SQL Light Question

2012-04-25 Thread A. Elk
It's an abstraction, to be sure, but it also protects you from malicious SQL injection. Forming raw SQL statements, especially from user input, allows users to hack the sense of your statement in truly evil ways. Using query() avoids this. All of the parameters of the query are passed in as

[android-developers] Re: newbie SQL Light Question

2012-04-25 Thread g...@deanblakely.com
Justin, Ahhh, RawQuery. I can use good ole simple SQL. thanks, Gary On Apr 25, 2:44 pm, Justin Anderson magouyaw...@gmail.com wrote: This is an abstraction so you don't have to build the SQL query yourself. If you want more flexibility you can use the rawQuery()

Re: [android-developers] newbie SQL Light Question

2012-04-25 Thread Mark Murphy
On Wed, Apr 25, 2012 at 7:03 PM, A. Elk lancaster.dambust...@gmail.com wrote: Using query() avoids this. All of the parameters of the query are passed in as arguments. No strings are concatenated, and no statement compilation is done. There's no way for the user to inject malicious SQL.

[android-developers] Re: Contact UI Question

2012-04-25 Thread A. Elk
You don't have to create your own contact editing UI. You can send an intent to the contacts app, which will bring the app to the foreground, displaying the Add Contacts screen. You can send extras that will populate the screen with data. See the javadoc for ContactsContract.Intents.Insert. If

[android-developers] Re: Contact UI Question

2012-04-25 Thread A. Elk
On Wednesday, April 25, 2012 7:48:13 AM UTC-7, Mark Phillips wrote: In my application, I need to collect information about (most likely) new people for the phone's contact database (eg players on a sports team). I see how to add the information using the Contacts API (

Re: [android-developers] market:// scheme change to play://?

2012-04-25 Thread TreKing
On Wed, Apr 25, 2012 at 5:39 PM, Karthz zkar...@gmail.com wrote: WIll the market:// custom scheme be always supported? Or, will that be changed to play:// anytime soon? You're never going to get an official response to that, but I can't imagine they would break existing apps by removing that

Re: [android-developers] Fragment.onActivityResult is not called

2012-04-25 Thread Casvah
Has this issue been fixed? The bug report on the issue tracker says it's closed, but there are new comments from people having this issue. I am also having this issue. I might be doing it wrong though, since I can't get it to work with any request code. On Thursday, March 10, 2011 12:15:12 PM

Re: [android-developers] BitmapFactory.Options inTempStorage

2012-04-25 Thread Jim Graham
On Wed, Apr 25, 2012 at 11:25:51AM -0600, Justin Anderson wrote: On Wed, Apr 25, 2012 at 11:15 AM, Jim Graham spooky1...@gmail.com wrote: While working on trying to squeeze in as much space for processing bitmaps in my app, I noticed this method, and from what I've read, believe it might

Re: [android-developers] Fragment.onActivityResult is not called

2012-04-25 Thread Zsolt Vasvari
I am sure it will be fixed in whatever the next version of Android is and if they back port the fix and the phones get updated (likelihood: 0.0001%). So unless you are targeting ONLY the non-yet public next version of the SDK, you might as well just not even assume this fix exists and code

Re: [android-developers] Fragment.onActivityResult is not called

2012-04-25 Thread Zsolt Vasvari
Oh, I see this is from 2011, not this March. Never mind -- the fix should certainly be part of 3.2 and ICS. On Thursday, April 26, 2012 10:09:38 AM UTC+8, Zsolt Vasvari wrote: I am sure it will be fixed in whatever the next version of Android is and if they back port the fix and the phones

[android-developers] Dynamic loading of components

2012-04-25 Thread Hemant Chaudhari
Hello, I have requirement just like PRISM framework in .Net. We want to develop Android Native app such that when it starts it will query to internet for any additional component updates. Once android app find updates it will download ONLY that component. It will not update the WHOLE app

Re: [android-developers] AlphabetIndexer with Custom Adapter managed by LoaderManager

2012-04-25 Thread Etienne
Here is the stack trace: 04-25 01:37:23.280: E/AndroidRuntime(711): FATAL EXCEPTION: main 04-25 01:37:23.280: E/AndroidRuntime(711): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sendit/com.sendit.ContactManager}: java.lang.NullPointerException 04-25 01:37:23.280:

[android-developers] Backporting stagefright and NuPlayer to Android 2.2?

2012-04-25 Thread Kiran Rao
I mistakenly posted this question on the Android-Platform group (linkhttps://groups.google.com/d/topic/android-platform/sBYyDKOoFWg/discussion). I think it really belongs here in this group. My requirement is to be able to play a live video stream in my Android app. The stream will be over

Re: [android-developers] newbie SQL Light Question

2012-04-25 Thread Justin Anderson
You ALWAYS need to guard against SQL injection attacks if you are forming your query based on user input... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Apr 25, 2012 at 5:15 PM, Mark Murphy mmur...@commonsware.comwrote: On Wed, Apr 25, 2012 at

Re: [android-developers] BitmapFactory.Options inTempStorage

2012-04-25 Thread Justin Anderson
Sorry Jim, I don't know the answer... Maybe Dianne or Romain will come across this post and they can shed some light on the subject. And I just can't resist... I HAVE to comment on this... I find it extremely amusing that the random quote in the signature of your last email happened to be this:

Re: [android-developers] Dynamic loading of components

2012-04-25 Thread Justin Anderson
Once android app find updates it will download ONLY that component. It will not update the WHOLE app again. Good luck with that... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Apr 25, 2012 at 9:35 PM, Hemant Chaudhari

Re: [android-developers] Dynamic loading of components

2012-04-25 Thread Kristopher Micinski
This is impossible... Unless what you mean by 'component' is some sort of code that is interpreted by your system (such as a configuration file). So basically, this is impossible.. kris On Wed, Apr 25, 2012 at 11:35 PM, Hemant Chaudhari hemant.newslet...@gmail.com wrote: Hello, I have

[android-developers] onPreviewFrame returning wrong information?

2012-04-25 Thread Taylor Niver
The code below works but it is returning images like this :IMGhttps://lh5.googleusercontent.com/-Tg7Yq8UzcmI/T5jYONjgOVI/BIU/L1prL75Y-VU/s800/hhh1335413774934.jpg . Is there something wrong with my code where it is not receiving the correct byte array from the surface holder? -Taylor

Re: [android-developers] Dynamic loading of components

2012-04-25 Thread Dallas Gutauckis
This might lead you in the right direction... http://developer.android.com/reference/dalvik/system/DexClassLoader.html http://stackoverflow.com/questions/3022454/how-to-load-a-java-class-dynamically-on-android-dalvik On Wed, Apr 25, 2012 at 11:35 PM, Hemant Chaudhari hemant.newslet...@gmail.com

[android-developers] Re: onPreviewFrame returning wrong information?

2012-04-25 Thread Taylor Niver
Also, much of the code has been copied from various sources online, it is not 100% mine On Thursday, April 26, 2012 1:09:23 AM UTC-4, Taylor Niver wrote: The code below works but it is returning images like this

[android-developers] Re: Dynamic loading of components

2012-04-25 Thread Dallas Gutauckis
This might lead you in the right direction... http://developer.android.com/reference/dalvik/system/DexClassLoader.html http://stackoverflow.com/questions/3022454/how-to-load-a-java-class-dynamically-on-android-dalvik On Wednesday, April 25, 2012 11:35:03 PM UTC-4, Hemant Chaudhari wrote:

[android-developers] Multitouch for two button

2012-04-25 Thread shihab shiha
Hi all, I need one help. i have two buttons for playing two sound file. i can play the sound easily but my requirement is holding one button and pressing another for getting the second button sound .i cannot access second buttton's id. Any help appreciated Thanks i mentioned all the links which

Re: [android-developers] Dynamic loading of components

2012-04-25 Thread Kristopher Micinski
You *really* shouldn't be doing this.. however..., kri On Thu, Apr 26, 2012 at 1:10 AM, Dallas Gutauckis dall...@gmail.com wrote: This might lead you in the right direction... http://developer.android.com/reference/dalvik/system/DexClassLoader.html

[android-developers] GPS Location returns zero speed always

2012-04-25 Thread David Ross
Asked this over on Stackoverflow as well... I have code that successfully gets location updates from multiple providers and filters them to give a current best estimate. I added code to check for the returned Location.hasSpeed() and .hasBearing() values to do some bearing related calculations