[android-developers] Re: Sometimes the running emulator is not found from within Eclipse?!

2009-10-11 Thread idoun
I have also same problem after upgrading the plugin to 0.9.3 On Oct 10, 10:31 pm, Mariano Kamp mariano.k...@gmail.com wrote: Hi,   when launching my app from within Eclipse, sometimes the running emulator is found and displayed in the launch dialog, sometimes it isn't?! Killing adb, the

[android-developers] Re: How to capture and save the image of Google Map(MapView)...

2009-08-28 Thread idoun
. On Aug 24, 3:57 pm, idoun idou...@gmail.com wrote: I solved this problem. The main issue of this problem is that theMapViewclass extends View class has 0 value of width and height. (I think every View classes have this issue...) To set the right size what I want, I extended theMapViewto

[android-developers] Re: How to capture and save the image of Google Map(MapView)...

2009-08-24 Thread idoun
is in the onCreate method. :) On Aug 21, 9:10 pm, idoun idou...@gmail.com wrote: Dear Developers! I'm trying to develop a map application which can save some part of map inside a phone. So, refering to the example of google developer site, I created my activity that using theMapViewclass to display

[android-developers] Re: how to add default zoom in/out in my MapView?

2009-08-23 Thread idoun
Hi! You don't have to use the ZoomControls class, if you need just a simple zoom in/out built-in function. Use this simple method. mapView.setBuiltInZoomControls(true); try~! On Jun 30, 7:01 pm, tstanly tsai.sta...@gmail.com wrote: it's a stupid question... there are a ZoomControl widget

[android-developers] How to capture and save the image of Google Map(MapView)...

2009-08-21 Thread idoun
Dear Developers! I'm trying to develop a map application which can save some part of map inside a phone. So, refering to the example of google developer site, I created my activity that using the MapView class to display the location what I want to see. It works. And I attached some code to