Hello Racks,
I think I got the issue you are describing. Officially, we have been
testing on 1280x800, so we never had any such issue. I also suggest
you go through this official Android doc.
http://developer.android.com/guide/practices/screens_support.html
Scroll the page and go to Table 3 which displays various screen sizes
and how the devices are categorized as small, normal, large or extra
large.
As you said that, you had activated already available config settings
of 1024x600 layout in cornerstone.xml file. According to the current
setting, the Cornerstone panel width is 450 and the handler width is
38 pixels. So the over all space left for main panel or where the
launcher app runs as (1024 - 450 - 38 = 536). Hence, the launcher app
runs in to 536x600 which is considered as the normal screen category
and the Android framework grabs the resources designed for smaller
screen or the phone UI. So I suggest you apply the below layout
settings in cornerstone.xml and then build the source.
<layout width="1024" height="600">
<landscape>
<width>320</width>
<height>257</height>
<handler>
<width>38</width>
</handler>
<appheader>
<height>30</height>
</appheader>
</landscape>
<portrait>
<width>298</width>
<height>450</height>
<handler>
<width>38</width>
</handler>
<appheader>
<height>30</height>
</appheader>
<gutter>4</gutter>
</portrait>
</layout>
Of course, you have to make appropriate changes in CSPanel layout
files too. Please make the above changes, test at your end and let us
know the result.
Thank you,
Sanjay