I am really embarrassed for bringing this up again but I have been away from it for a couple of weeks and my brain is still in sleep mode.
I "think" I finally found out why my device is not displaying my app properly (views are off the screen). My tablet has a density of 240 (scale=1.5) and the designed layouts were done with 160 (scale =1). So if I want to make layouts compatible with a density of 240, is this the way to do it:
name a new emulator
Same target of android 2.2 (API level 8)
Skin of HVGA
Resolution of 480x800
SD Card =16
abstracted lcd density=240
Create the emulator
Start
Scale display to real size=7
Monitor dpi=72
Scale 0.54 (???)
I think I was doing this before but using density of 160 and it wasn't fitting my tablet. Should have a Toshiba Thrive by early next week for the 10" version.
You said that your tablet has a density of 240, yet in your specs above, you indicate that your device is 7" and has a density of 800x480. That is a density of 160, not 240. The Thrive also has a density of 160. Only a small device, i.e.: a phone, could have a resolution of 800x480 and a density of 240.
In addition to the factors you listed, you should also be aware that many tablets use part of the screen for the soft menu buttons. On the Thrive, it's at the bottom of the screen, so in landscape mode, for example, the resolution will not be 1280x800 but 1280x776. On an Archos 70, the menu is on the right so that instead of 800x480, its resolution is 760x480. The only way to adjust for such differences is in Activity_Create.
For example, in an app I'm working on, I have a segment like this (where "LayoutHeight" is the value used in the emulator, such as 800):
[FONT=Courier New][SIZE=2][COLOR=#008000][FONT=Courier New][SIZE=2][COLOR=#008000][FONT=Courier New][SIZE=2][COLOR=#008000]' Adjustment for tablets whose menu bar is at the [/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=2][COLOR=#008000][FONT=Courier New][SIZE=2][COLOR=#008000][FONT=Courier New][SIZE=2][COLOR=#008000]' bottom [/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#008000][FONT=Courier New][SIZE=2][COLOR=#008000][FONT=Courier New][SIZE=2][COLOR=#008000]of the screen in landscape mode:[/COLOR][/SIZE][/FONT]
[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff]If[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=2][FONT=Courier New][SIZE=2] LayoutHeight <> Activity.Height [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff]Then[/COLOR][/SIZE][/FONT]
[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=2][FONT=Courier New][SIZE=2] AdjustUp = (LayoutHeight - Activity.Height) / [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080]2[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=2][FONT=Courier New][SIZE=2] ExplainPanel.Top = ExplainPanel.Top - AdjustUp[/SIZE][/FONT]
[SIZE=2][FONT=Courier New] ScorePanel.Top = ScorePanel.Top - AdjustUp[/FONT][/SIZE]
[SIZE=2][FONT=Courier New] PlayerNums.Top = PlayerNums.Top - AdjustUp[/FONT][/SIZE]
[SIZE=2][FONT=Courier New] LabelDetail1.Top = LabelDetail1.Top - AdjustUp[/FONT][/SIZE]
[SIZE=2][FONT=Courier New] LabelDetail3.Top = LabelDetail3.Top - AdjustUp[/FONT][/SIZE]
[SIZE=2][FONT=Courier New] panelCards.Top = PanelCards.Top - AdjustUp[/FONT][/SIZE]
[/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff]End[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff]If[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT]
For more info, see
this page in the Documentation Wiki.