summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Penguloon/Activity.cs3
-rw-r--r--Penguloon/Controls/IngameOptions.cs2
-rw-r--r--Penguloon/Resources/Drawable/Icon.pngbin24313 -> 4266 bytes
-rw-r--r--Penguloon/Resources/Drawable/Splash.pngbin33526 -> 18735 bytes
-rw-r--r--Penguloon/Resources/Values/Styles.xml4
5 files changed, 7 insertions, 2 deletions
diff --git a/Penguloon/Activity.cs b/Penguloon/Activity.cs
index 156a1b5..bdc9f11 100644
--- a/Penguloon/Activity.cs
+++ b/Penguloon/Activity.cs
@@ -19,6 +19,9 @@ namespace Penguloon
{
base.OnCreate(bundle);
var g = new Main(Resources, this);
+ Window.AddFlags(WindowManagerFlags.Fullscreen);
+
+
SetContentView((View)g.Services.GetService(typeof(View)));
g.Run();
}
diff --git a/Penguloon/Controls/IngameOptions.cs b/Penguloon/Controls/IngameOptions.cs
index 137094c..f59379d 100644
--- a/Penguloon/Controls/IngameOptions.cs
+++ b/Penguloon/Controls/IngameOptions.cs
@@ -101,8 +101,8 @@ namespace Penguloon.Controls
BtnContinue.Draw(deltaTime);
BtnQuit.Draw(deltaTime);
- QuitConfirmationBox.Draw(deltaTime);
BtnMute.Draw(deltaTime);
+ QuitConfirmationBox.Draw(deltaTime);
}
public override void Update(float deltaTime, TouchLocation[] touchLocations)
diff --git a/Penguloon/Resources/Drawable/Icon.png b/Penguloon/Resources/Drawable/Icon.png
index f6f4f41..1a66b18 100644
--- a/Penguloon/Resources/Drawable/Icon.png
+++ b/Penguloon/Resources/Drawable/Icon.png
Binary files differ
diff --git a/Penguloon/Resources/Drawable/Splash.png b/Penguloon/Resources/Drawable/Splash.png
index 2f86107..87b22da 100644
--- a/Penguloon/Resources/Drawable/Splash.png
+++ b/Penguloon/Resources/Drawable/Splash.png
Binary files differ
diff --git a/Penguloon/Resources/Values/Styles.xml b/Penguloon/Resources/Values/Styles.xml
index 5102134..158af9f 100644
--- a/Penguloon/Resources/Values/Styles.xml
+++ b/Penguloon/Resources/Values/Styles.xml
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
- <style name="Theme.Splash" parent="android:Theme">
+ <style name="Theme.Splash" parent="@android:style/Theme.Holo.Light">
<item name="android:windowBackground">@drawable/splash</item>
<item name="android:windowNoTitle">true</item>
+ <item name="android:windowActionBar">false</item>
+ <item name="android:windowFullscreen">true</item>
</style>
</resources>