Reddit Reddit reviews Professional Android 2 Application Development

We found 5 Reddit comments about Professional Android 2 Application Development. Here are the top ones, ranked by their Reddit score.

Computers & Technology
Books
Operating Systems
Professional Android 2 Application Development
Check price on Amazon

5 Reddit comments about Professional Android 2 Application Development:

u/Cryptopone · 5 pointsr/Eve

I picked up Professional Android 2 Application Development a while ago and worked through some of the examples in there.

But honestly? I used the Android docs from Google and some of their examples as well as some strategic Google searches for when I'd get stuck. The book is nice to have when I want to spend some time away from the computer but online resources are better (even if you have to hunt around a bit).

My current external dependencies are Jsoup for HTML parsing and tesseract-ocr for image recognition.

Edit: Just realized you meant the Eve api. This isn't using it atm.

u/Cappy-chan · 5 pointsr/androiddev

If your brother already knows how to program then I would recommend Professional Android 2 Application Development. I like it because it is concise and lets you look up how to do something quickly.

u/chunalt787 · 3 pointsr/Android

http://www.amazon.com/Professional-Android-Application-Development-Programmer/dp/0470565527

That book helped me more than anything when I first started out. FYI this book assumes you know Java at least alright.

u/Medicalizawhat · 2 pointsr/learnprogramming

First step, learn Java well enough to be comfortable reading and writing it. You can check out the Java Tutorials to get started. Another good resource is Head First java. I'd recommend getting your head around Object Oriented Programming and writing some simple programs in plain Java before you dive into Android.

Next, check out the Android Documentation as it's going to become your best friend. They have loads of tutorials and sample code to help get you started. I also found The Busy Coder's Guide to Android Development and Professional Android Application Development really helpful and would definetly recommend reading a book on Android dev as it will make things a lot easier when debugging/coding. Android apps are quite different then desktop apps so it's worth understanding how they work and the ideas behind Android's design.

Finally, code up your app and launch it!