diff --git a/android/AndroidManifest.template.xml b/android/AndroidManifest.template.xml index dd381957..b1736bf7 100644 --- a/android/AndroidManifest.template.xml +++ b/android/AndroidManifest.template.xml @@ -16,7 +16,9 @@ android:largeHeap="true" android:label="Tick's Tales"> + android:theme="@android:style/Theme.Translucent.NoTitleBar" + android:screenOrientation="landscape" + android:configChanges="orientation|keyboardHidden" > diff --git a/android/res/drawable-hdpi/splash_circle.png b/android/res/drawable-hdpi/splash_circle.png deleted file mode 100644 index 33128e3d..00000000 Binary files a/android/res/drawable-hdpi/splash_circle.png and /dev/null differ diff --git a/android/res/drawable-hdpi/splash_droid.png b/android/res/drawable-hdpi/splash_droid.png index ce862fc5..ed76da98 100644 Binary files a/android/res/drawable-hdpi/splash_droid.png and b/android/res/drawable-hdpi/splash_droid.png differ diff --git a/android/res/drawable-hdpi/splash_hands.png b/android/res/drawable-hdpi/splash_hands.png deleted file mode 100644 index a70864e3..00000000 Binary files a/android/res/drawable-hdpi/splash_hands.png and /dev/null differ diff --git a/android/res/drawable/splash_background.xml b/android/res/drawable/splash_background.xml index bd3ab4b8..7434c3ad 100644 --- a/android/res/drawable/splash_background.xml +++ b/android/res/drawable/splash_background.xml @@ -1,6 +1,5 @@ - - + diff --git a/android/res/layout/splashscreen.xml b/android/res/layout/splashscreen.xml index 47ea9fdd..12d3413b 100644 --- a/android/res/layout/splashscreen.xml +++ b/android/res/layout/splashscreen.xml @@ -1,59 +1,24 @@ - - + - - - - - - - - - - diff --git a/android/src/java/advent/core/SplashActivity.java b/android/src/java/advent/core/SplashActivity.java index 5a870d6c..3eaa5533 100644 --- a/android/src/java/advent/core/SplashActivity.java +++ b/android/src/java/advent/core/SplashActivity.java @@ -35,13 +35,6 @@ public class SplashActivity extends Activity { public void setupSplash() { setContentView(R.layout.splashscreen); - - TextView appNameView = (TextView)findViewById(R.id.splash_app_name); - appNameView.setText(R.string.app_name); - - Animation rotation = AnimationUtils.loadAnimation(this, R.anim.splash_rotation); - ImageView circleView = (ImageView)findViewById(R.id.splash_circles); - circleView.startAnimation(rotation); } public void proceed() {