[android-developers] Re: Using custom jar files in Android app?

2009-03-11 Thread indiabolbol.com
create a folder called lib and put 3rd party jar in there. Then add a reference to the jar in Eclipse as any other java app. On Mar 6, 1:22 pm, Dirk Jäckel dirk.jaec...@gmail.com wrote: Hi! I use thrid-party jars with my application. All it takes is the dx-compiler transforming the

[android-developers] UI Update question

2008-11-11 Thread indiabolbol.com
Below is a snippet from google http://code.google.com/android/kb/commontasks.html#threading public class MyActivity extends Activity { [ . . . ] // Need handler for callbacks to the UI thread final Handler mHandler = new Handler(); // Create runnable for posting final

[android-developers] Re: UI Update question

2008-11-11 Thread indiabolbol.com
After reading the Handler documentation, I got the clarification: because mUpdateResults Thread will run on the thread to which this handler is attached whereas new Thread will run on another thread other than the UI thread. Is this correct? On Nov 12, 11:05 am, indiabolbol.com [EMAIL PROTECTED

[android-developers] Dynamic Overlay

2008-10-10 Thread indiabolbol.com
How do I update a map dynamically either as the user moves the map. I tried to use the below code but the map does not display the data from server protected class SitesOverlay extends ItemizedOverlayOverlayItem { private ListOverlayItem items = new