I've asked a question similar to this but thought I would ask a more general question to get a wider range of input.
I ask this question because the last two apps I've developed, I threw all image resources in the drawable-hdpi folder, didn't deal with landscape-mode, tested it mainly on my own personal Droid phone, and basically felt like I was only developing for my own device. Although I did always use dpi and sp in the appropriate places, this was not enough for my app to scale appropriately on other screen sizes/densities. It scaled okay sometimes, but would always tend to cut off a portion of the screen on smaller sizes.
What are the best ways to begin an app that will scale at least somewhat well on all devices?
For example, should I construct my app layouts so that it looks correct on the default HVGA screen and allow it to scale to larger densities? Would it be a best practice to be actively building both portrait and landscape layout files?
What are you doing to ensure your apps look nice on all devices without just focusing on one size and then scrambling around later to manage this?