manifest changes, all activities are fullscreen and some activities have been added to the manifest
--- a/project_files/Android-build/SDL-android-project/AndroidManifest.xml Thu Aug 04 17:37:40 2011 +0200
+++ b/project_files/Android-build/SDL-android-project/AndroidManifest.xml Thu Aug 04 17:40:29 2011 +0200
@@ -9,7 +9,7 @@
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name=".MainActivity"
android:label="@string/app_name"
- android:theme="@android:style/Theme"
+ android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -30,7 +30,17 @@
<activity android:name="StartGameActivity"
android:label="@string/app_name"
- android:theme="@android:style/Theme"
+ android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
+ android:screenOrientation='landscape'>
+ </activity>
+ <activity android:name="TeamSelectionActivity"
+ android:label="@string/app_name"
+ android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
+ android:screenOrientation='landscape'>
+ </activity>
+ <activity android:name="TeamCreatorActivity"
+ android:label="@string/app_name"
+ android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation='landscape'>
</activity>