Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to write an Android application(a port from a windows mobile phone) but I need to learn a couple things

  1. How to program for different screen sizes and resolutions (so my controls get bigger smaller or whatever)
  2. How to dynamically create controls such labels and checkboxes ( and checkbox listeners)
  3. How to create a menu
  4. How to create a context menu( a menu when you right click on the screen it pops up)
  5. how to program for landscape and portrait mode

    How to consume a webservice

Most of what I am after is mostly the display aspect as all my logic is on a webservice so I could port all my stuff to different phones faster.

So I am looking for tutorials or a book to get me up to speed to do these things

share|improve this question

closed as not constructive by Lucifer, casperOne Aug 14 '12 at 12:22

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 7 down vote accepted

If you are looking for a book Professional Android 2 Application Development by Reto Meier is excellent and has sample code available for all the examples. He hits on all your points.

share|improve this answer
Any particular chapters? – chobo2 Apr 22 '10 at 6:55
the entire book is quite excellent and worth picking up. I'm halfway through and Chapter 4 is probably the best (talks about layouts and UI) - I'd recommend giving a perusal all the way through, though. There are some nuances I didn't know about as it relates to Application lifecycle – danpickett Apr 22 '10 at 12:28
Well I really only plan of making this one application and won't touch andriod for a long time after that. So I don't need to know stuff like bluetooth and gaming api's and stuff. I just need the questions I asked in my original post. So I really just need to know the chapters to read to get me to that point. – chobo2 Apr 22 '10 at 19:06
Any other books? what do you think about "Learning Android"? – Alex Kapustian Jun 9 '11 at 6:38
I've recently reviewed a couple Manning Android books and also the new 'Beginning Android Application Development' from Wrox. I ended up selecting the Wrox book to use for an Intro to Android course. – Kevin McMahon Jun 9 '11 at 15:32
show 1 more comment

Best resources are developer guide and CommonsWare.

share|improve this answer
1  
Thanks for the shout-out! – CommonsWare Apr 22 '10 at 10:37
CommonsWare is good for learning android. – SIVAKUMAR.J Dec 6 '12 at 10:54

I have the Pragmatic Programmers' Hello, Android and I've gotten a lot of good out of it. It has a good overview of the Android application lifecycle and a nice long walkthrough of an example application that ladles out the useful/interesting bits of Android development as it goes.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.