When writing multiplatform apps, you need to decide how much of the code to share. The 2 options are
• everything. You use(write) cross platform gui libraries and system routines
• the logic is cross platform but the presentation layer is platform specific
The 2nd approach tends to give better apps but it is a more work (assuming you don't need to write the cross platform libraries).
The tricky thing with the mobile world is picking a language. Right now you have
•Java - Android, Blackberry, Java ME phones
•Object C/C - iPhone, windows Mobile
•Javascript - Palm Pre
You can cross compile java to javascript and vice versa. You can also compile java to C or use a javascript engine that you can call from C. I don't think you can run C on a java/javascript phone. That leads me to suggest writing your code in Java/Javascript. Cross compiles (and mixing languages in general) have the downside of making debugging a bit harder.