Archives
-
Turn-By-Turn Driving Directions in Android with Mono for Android (MonoDroid)
I needed to open some turn-by-turn directions in Android. I did the following with Mono for Android, and this code worked:
String url = String.Format("http://maps.google.com/maps?saddr={0},{1}&daddr={2}", lat, lon, dAddr);
Intent intent = new Intent(Android.Content.Intent.ActionView, Android.Net.Uri.Parse(url));
StartActivity(intent);
In this code, I needed to get some directions from the current latitude and longitude. -
My article on iPhone & iPad Programming for .NET/C# Developers with MonoTouch has been published
My article on iPhone & iPad Programming for .NET/C# Developers with MonoTouch has been published in the April, 2011 issue of DevPro Connections. I hope you enjoy it.
-
Mobile Connections - Las Vegas, NV - April 17-21
I'll be speaking at Mobile Connections in Las Vegas, NV. I'll be speaking on:
-
HTML5 Presentation from AnDevCon using ASP.NET Web Pages and Razor
Here is my presentation on HTML5 Applications from AnDevCon.
-
Code Project Mobile Virtual Conference with MonoDroid
I'm speaking on Wednesday at the Code Project Mobile Virtual Conference on the subject of Android Programming for .NET/C# Developers with MonoDroid. Check it out, I think its free. Hopefully, you'll find this helpful in your mobile pursuits.