Possible Duplicate:
Android application built when installed on atrix phone uses only part of screen

The issue is that the application screen only took up only half of the Atrix's physical screen

I have tried resolving it by adding the codes (shown below) but to no help;

android:fitsSystemWindows="true"
android:minHeight="960dp"
android:minWidth="540dp"

any advise?

link|improve this question
feedback

closed as exact duplicate by casperOne Jan 17 at 22:18

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

I had this problem when the android:minSdkVersion was set to 3 in the AndroidManifest.xml

<uses-sdk android:minSdkVersion="3" />

When I set it to something higher than 3, it used the whole screen. For example:

<uses-sdk android:minSdkVersion="8" />
link|improve this answer
feedback

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