Search code examples
javaandroidintellij-13

Looking for tutorials that are CURRENT & work with IntelliJ/UI Designer


I can't seem to find anything on Java/Android that's current (uses IntelliJ 13 etc). Everything seems to be either very old (2011-2012), and either the UI has changed, or they don't use the UI Designer etc

I'm not a total noob to programming, I have somewhat decent experience in C# & Windows Forms, and would love something that can throw me into Java for Android that's UP TO DATE.

Thanks.


Solution

  • If you have decent experience in C#/WinForms, you just need a good Android book, not IntelliJ/UI Designer tutorials… I recommend the excellent BigNerdRanch book. They make probably the best iOS books and the Android offers excellent patterns. With your experience, adapting to IntelliJ should be a breeze, in part because the IDE doesn't force you to do anything. In fact, if you're starting, just use Android Studio (is IntelliJ anyway).

    The UP-TO-DATE part consists in always using Fragments, understanding the SDK pieces where you have to consider older devices (if that's your scope), making good use of different layouts for different resolutions, etc.

    There's no such thing as Visual Studio Designer. (There is, but it doesn't work the same way). I recommend you read the official android documentation about UI with utmost care since it's the core of Android UI. For the most part, you will tweak your UI from the "XML" instead of the UI designer, which you can use to "see how it looks" or if "makes sense" but trust me, as intimidating as it sounds, it's actually not rocket science and you get used to it relatively fast.