[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 wrote: > Hi! > > I use thrid-party jars with my application. All it takes is the > dx-compiler transforming the classfiles to dex-files. It

[android-developers] Testing application

2008-12-02 Thread indiabolbol.com
I am interested in how the developers tested the application before putting the application on the android market. I know it can be tested on the device, but what about testing on the real device. In other words, if I have the real device can I upload the application to the device and perform the

[android-developers] Re: WiFi within of emulator

2008-11-13 Thread indiabolbol.com
It uses the underlying systems network. I can browse on emulator G1 on my laptop which is connected to the net via wifi. On Nov 11, 9:22 pm, Monic79 <[EMAIL PROTECTED]> wrote: > Hello, > > I would like to know how to use a wireless connection of a laptop to > simulate WIFI connection in the Andro

[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&quo

[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 Runna

[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 ItemizedOverlay { private List items = new ArrayList(); private Drawabl