15

What pitfalls should I avoid?

  • What Java language paradigms do Objective-C developers consistently misunderstand? I learned to program in Java, but I have worked in nothing but Objective-C for years now.
  • How are the design patterns different between Android and iOS?
  • If you've made the transition yourself, what parts of Android confused you or took you longer to learn than it should have?
  • Is Eclipse the best OS X IDE for Android?

For the record, my app is very strongly tied to UIKit and Foundation, so the word "porting" may be a misnomer; I'll actually be completely rewriting it for Android. No code reuse. Also, I'm doing this to learn Android, so I'd rather fail at the port and learn Android than take a shortcut.


As a bit of background, this question was prompted by the types of questions I see on Stackoverflow. Frequently you can tell what someone's background was (C# or Java) by what silly mistakes they make when they're trying to write Obj-C. I'd like to avoid the kinds of mistakes that make Java developers roll their eyes and say, "Silly Objective-C developers, won't they ever learn?"

kubi
  • 487
  • 3
  • 15
  • 2
    `Is Eclipse the best OS X IDE for Android?` Yes, ADT didn't work well on netbeans last I tried. Eclipse is the recommended IDE. – Benbob Jan 17 '11 at 03:17
  • @Keyo: Eh? When I tried it on Netbeans a year and a half ago it worked pretty well. Surely over that time it would of gotten better? – TheLQ Jan 17 '11 at 03:34
  • In answer to @Nassign's comment-as-an-answer: I certainly would have gotten a lot more answers if I had posted on Stackoverflow, but browsing Programmers it looks like there's a lot of these types of questions that are being migrated over here. If it would be more appropriate for that forum, I can ask it over there. – kubi Jan 17 '11 at 04:14
  • I think you would get more answer if you place it in stackoverflow. – Nassign Jan 17 '11 at 04:23
  • 1
    @kubi This is a fine place to ask this and fits the purpose of this site: hopefully you get some answers, I'm interested myself. –  Jan 17 '11 at 04:25
  • I humbly suggest that you also try IntelliJ Idea; the free edition supports Android development out of the box. – 9000 Jan 17 '11 at 15:23

2 Answers2

11

I'm porting an app from iOS to Android, it's someone else's app that I am working with to do the port but none-the-less.

First off I would say that the user bases have been taught drastically different ways of interacting with their devices. A lot of this comes from the actual design of the applications as well as the ways that the devices function.

Some general things:

  • Landscape is pretty much required on Android devices
  • Android apps tend to keep running when they aren't actively being used, so you need to think about this for network issues, gps, etc...
  • Device Segmentation, there are tons of android devices and screen resolutions, this is where relative layouts and nine-patch images are very handy.

A big one that a lot of people don't initially think about Your UI can not be exactly the same on both devices, sure it can be similar but porting an iPhone UI to an Android Device will not work out very well.

Some reasons:

  • Long touch context menus
  • Menu popups
  • Device segmentation causing differing resolutions and aspect ratios
  • Not the same controls to work with

The back end really isn't a big deal as most of it is just implementing the main bulk of what you were working with into Java and the Android SDK. My biggest issues have come from what the User expects and UI behavior and differences, sometimes it's better and sometimes it is worse. It really just depends on what your app is doing.

EDIT

I just realized I didn't answer the actual parts of your questions, so here goes (my best shot at least)

I wouldn't say there are any big language paradigms that Obj-C devs misunderstand, I would say that Java is probably simpler to get what I want it to do from an OOP perspective. (I should say I only really work with .NET and Java and only know enough Obj-C to get by).

I would definitely use Eclipse, I tired using IntellijIdea for a while and it just gave me to many problems trying to get it to do certain things.

msarchet
  • 453
  • 3
  • 8
  • When you say "Landscape is required" do you mean in addition to portrait? My app only does a few things in the background on iOS, do I need to explicitly opt-out of running in the background if I don't need to be doing anything in the background? – kubi Jan 17 '11 at 17:10
  • @kubi yea in addition to portrait, because a good set of devices have hardware keyboards that put the device in landscape when used. On the background it's the fact that the app keeps running when a user switches apps. – msarchet Jan 17 '11 at 17:30
  • +1 (or more): "porting an iPhone UI to an Android Device will not work out very well." That is true: in fact the UI might be quite different, as the available lib is different. – Dan Rosenstark Feb 01 '11 at 07:19
  • IntelliJ Idea works great for Android development for me. Love it. – Alexander Babaev Apr 21 '11 at 19:54
3

[this answer is kind of a ramble or rant. I was going to delete it but thought it might be interesting: let me know via comments if I should delete it and I will].

I don't work on Android but I do work in Java and iOS (with Obj-C). The one thing that is really different about Java development is just how much an IDE can help out (people will tell you not to use an IDE, which is a totally different take on the same thing: few people advise this with Java, however). XCode is generally unable to even CORRECTLY detect the most simple syntax errors (due to the structure of the language, I think). In Java, on the other hand, the IDE can get you moving much faster than you would be without it. You can also do really cool stuff like programming the calling cient and THEN writing the method. In Eclipse, for instance, if I type

blah.doIt(firstObj, secondObj);

and firstObj and secondObj are String instances, the IDE will give me the option to make a method with the sig "public void doIt(String firstObj, String secondObj)." That is really cool, and just the tip of the iceberg: the IDE is your friend. I've heard that IntelliJ might be even cooler (though in my trials it hasn't been).

Is there a pitfall in this answer? Perhaps it is: thinking the IDE plays the same role in Obj-C and Java. In Java, the IDE can do things that would be amazingly difficult to do yourself. The automatic refactoring, because of the way Java is, it 100x more powerful than XCode's. This means that you can postpone some design questions until later.

Dan Rosenstark
  • 2,344
  • 1
  • 20
  • 20
  • A lot of my thinking on this has changed thanks to AppCode. It's awesome. Still, it can't differentiate between same-named things, but it definitely does a lot of the work for you. – Dan Rosenstark Mar 04 '14 at 00:57