This question is to those who are developing on android with Mono:
- how close to developing in regular C# is Monodevelop android development
- is there a cheaper version then $399
- can you use Visual Studio to develop on the droid.
|
This question is to those who are developing on android with Mono:
|
||||
|
|
|
The mono project has gone to great lengths to match the standard Microsoft libraries within Mono, so almost all the namespaces you use will be available in MonoDevelop. Update: Unlike MonoTouch, MonoDroid allows you to develop the whole project from either MonoDevelop OR VS2010. This tutorial walks you through a Hello World app in VS2010. I assumed the development process was going to be similar to MonoTouch, were some development had to happen in MonoDevelop |
|||||||||||
|
|
I have developed two apps using Mono for Android. In many cases, the Java and C# code are very similar. Mono for Android uses the same methods, however, it capitalizes the first letter. Instead of setContentView in Java, it's SetContentView. I recently translated a barcode scanning application from Java to Mono for Android in about 30 hours (it took me 80 hours to make in Eclipse.) I just copied and pasted code and change the first letter. That took care of 2/3 of the work. You can still use the Java API in Mono for Android. Just make sure you use the right namespaces in your using directive. As for layouts, I just copied those as is from Eclipse and they worked fine. If you create new layout files, ending in .axml, you can get intellisense. |
|||
|
|
There is a student/academic license too, for $79. |
|||
|
|