Search This Blog

Thursday, August 4, 2011

How to make app show full-screen on Galaxy Tab

Old man : "Hi all, Recently I just started to learning about how to development Android app on my Galaxy Tab. I learned a lot of thing and found one thing interesting . If you have source code that doest not support for big screen (just like tablet). May be we can make it to showing in full-screen on your device ..."

      original app just displays like small-size screen

1. At AndroidManifest.xml file, add these two line
<uses-sdk android:minSdkVersion="8" />
    <supports-screens android:largeScreens="true" android:anyDensity="true"/>

2. Clean you project and rebuild it. Then download .apk on your device.

3. If nothing wrong. This time your app should display with full-screen function on the device.
 Wow !!
Ref: I using Min3D for an example...
http://code.google.com/p/min3d/

No comments:

Post a Comment