Possible Duplicate:
Why does Android app run in small window on tablet emulator?
i developed an android app. Works fine! 🙂
I tested it on my tablet and saw that only a part of the screen is used (size of my handydisplay).
What i have to do, that the whole tablet screen is filled?
Do you need any code to say what i have to do?
EDIT: my manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="[..]"
android:versionCode="1"
android:versionName="1.6.2">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps" />
<activity android:name=".Main"
android:label="@string/app_name"
android:windowSoftInputMode="stateHidden">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
[...many many other activitys...]
</application>
</manifest>
This answer says: