Beyond simple applications, it not going to happen.
The are a number of problems you will face like:
- Different native programming languages on different mobile platforms.
- Different UI paradigms on the different mobile platforms.
- Very different screen sizes even on the same mobile platform (e.g. iphone vs ipad).
- UI Localisation
To really take advantage of each mobile platform, you need to build the UI for that platform to maximise it's UI paradigm. It also matters what screen sizes you want to support, catering for small screen sizes can hamstring you in what you can display in the UI unless you build different screen layout for different screen sizes to give a better UI experience (a lot of work). This can be a big problem on one platform let alone expanding it to other platforms.
For the platforms listed, you can try using mono, but that will only help in the following ways:
- One programming language (C#) instead of a different language per platform.
- Application engine logic can be shared between platforms.
- Native UI per application.
The cons of using mono would be:
- You still need to write the UI layer per platform as mono binds to the underlying UI api.
- Mono runtime overhead in size and sometimes speed.
- Mono on the mobile platforms are still new, I have developed one iphone application in monotouch and I found lots of first-release type problems with it.
If you don't mind some of the con's then mono can be a great platform for developing certain levels of applications.
I have found that trying to define a master UI layout just doesn't work in all situations in any application that gets to complex in the information it needs to display to the user. No matter how "complex" you can define the layout, something will break it. You either have to live with a "bad" UI in some cases or have a maintenance overhead.
I like to develop an application for the mobile platform to try can get the most out of that platform and it's features. This may mean that other platform versions of the app may work differently but at least it will feel correct on that platform.