Can anyone tell me how I create a directory on the simulator using DDMS? I'm going through some sample code, and it requires a file to be in a certain directory that doesn't exist, and I have figured out how to upload the file, but can't figure out how to create the directory I want to put it in :-).
Appreciate any help. Sincerely, Brad Gies ------------------------------------- NLM Software Southfield, MI, USA ------------------------------------- If you get today's work done today, but do it in a way that you can't possibly get tomorrow's work done tomorrow, then you lose. ________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Ravi Savaliya Sent: Thursday, August 28, 2008 1:18 PM To: [email protected] Subject: [android-beginners] Re: Problem with basic Map application Instead of using mc.setcenter(point), use mc.animateTo(point)... I think this will help On Thu, Aug 28, 2008 at 1:50 AM, Rani v <[EMAIL PROTECTED]> wrote: Hi All, I am writing a class to display basic Map, but it is showing only a blank screen ,can any one suggest me how to display the map sending you the code public class MapExample extends MapActivity { private MapView mMapView; private String map = "Browse Map"; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mMapView = new MapView(this, map); // Latitude and Longitude GeoPoint p = new GeoPoint((int) (28.38 * 1000000), (int) (77.12 * 1000000)); // MapController manages panning and zooming of a map MapController mc = mMapView.getController(); mc.setCenter(p); // mc.zoomIn(); //Not working setContentView(mMapView); mMapView.isSatellite(); } } I am using android-sdk-windows-0.9_beta and Eclipse 3.3 This e-mail or communication, including any attachments, is intended only for the person or entity to which it is addressed and may contain confidential and/or legally privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this message in error, please contact the sender immediately and permanently delete all copies, electronic or other, you may have or from your computer. Any disclosure, copying, distribution, reliance or use of the contents or information received in error is strictly prohibited. The foregoing applies even if this notice is imbedded in a message that is forwarded or attached. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] Announcing the new M5 SDK! http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

