Technology to write iPhone, BlackBerry and Android phone at the same time? [closed]

我的未来我决定 提交于 2020-01-08 12:25:48

问题


Is there a strategy or at least best practice to write an app that runs on iPhone, BlackBerry and Android?

I'm ignorant about the development environments for BB and Android, but I assume they both support Java apps.

I know that the iPhone would require an ObjectiveC portion (as well as a whole new UI).

Has anyone done this?


回答1:


You might want to check out http://phonegap.com/




回答2:


One technique, that works suitably for certain kinds of apps such as reference applications: Use HTML/CSS/JavaScript and write compact clients that uses the platform's HTML viewer object to read locally embedded web content.

One technique to write cross-platform application that ran on both BlackBerry and Windows Mobile, was to write it all in HTML. I had to use a subset of HTML and CSS that worked on both BlackBerry Browser and Pocket Internet Explorer. I used a small amount of JavaScript as well.

I wrote very small viewers that ran it off internally-stored HTML and images using jar:// (BlackBerry) and res:// (Windows Mobile) URL's. I was able to embed all the HTML and images files as part of the BlackBerry application, by using a custom version of the browser field and . Same for Windows Mobile, I was able to use Pocket Internet Explorer as an embedded ActiveX in my Windows Mobile application.

Note -- for BlackBerry, I had to support legacy devices running OS 4.2. To do so, I recycled a lot of RIM code samples, such as SecondaryResourceFetchThread.java to pull images embedded in the application, and deliver it to through a custom connection object that implemented HttpConnection that I designed to handle jar:// URL's for internally embedded HTML/images in my BlackBerry application. It was a little tricky to figure out. For Windows Mobile, it was more intuitive.

There are other ways to do what I needed, but it worked perfectly for a medical reference application, and I was able to design separate CSS files for BlackBerry and for Windows Mobile to reformat the content slightly differently for the two mobile devices. (It was kind of like testing Netscape versus Internet Explorer compatibility in the old days.)

This may not work for your situation, but if your application is a web-style 'reference' application, and you know how to do HTML well, this approach may work.




回答3:


We are currently looking into this also and we found:

Titanium

Kony Solutions

These products have good reviews. The Titanium is free for the community edition.




回答4:


Another option to look at is Rhodes, which is a Ruby framework.




回答5:


http://j2mepolish.org could be good choice, however, iphone is only in the roadmap. But android and BB are already supported as well as all other j2me phones.




回答6:


also if you're writing games, check out my cross-platform (iPhone, Android, etc.) solution called the Cuttlefish Engine, at http://www.cuttlefishengine.com.




回答7:


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
  • Objective 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.




回答8:


Also, you could give a try to Mobile Community Framework (MCF). This is a crossplatform framework running natively on iPhone, Android, WinMobile, Symbian and BlackBerry. MCF handles network, location and proximity operations for you, in a Wi-Fi Ad-Hoc network or through dedicated proxy server if no direct connection is possible. It has simple API, and it's free to use. This way you can develop your app interface and logic separately on each platform, and use MCF to connect instances of your application in a way you like.

More info at http://uvamobiltec.com




回答9:


You can always write a javascript app on the web, and it should work on all three. Of course that doesn't get installed on the phone.

Android has a webview that runs Javascript. I'm sure the other platforms do also. If you wrote most of your logic in javascript, you could may be able to reuse that javascript across platforms.




回答10:


Yet another framework is http://www.mosync.com/

It seems to support all major platforms.




回答11:


Adobe Flex and Flash Builder looks promising too. Still you should consider its proprietary, but with the video on their developer center website seems like it worths it. By the way, the latest release Currently supports Android. The support for iOS is supposed to be out in June 2011 through an update.




回答12:


If you want to write cross-platform web app, SenchaTouch or Phonegap is a good choice.

If you prefer native app, the best cross-platform solution is Titanium. Using Titanium, you can write you app in Javascript, and it compiles JS to native code (Objective-C, Java...)



来源:https://stackoverflow.com/questions/821085/technology-to-write-iphone-blackberry-and-android-phone-at-the-same-time

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!