When I got hold of a Android 3 tablet, the first thing I did was to run one of the apps I’ve developed on it to see how it looked. I was surprised to see that it just ran in a little window, much like IPhone apps do on an IPad.
Fortunately getting the app to fill the whole screen just required the following line after the <application> section in my AndroidManifest.xml:
<uses-sdk android:targetSdkVersion="9"/>
Advertisements