diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index e660bb6f7..2e6848374 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -1,62 +1,80 @@
+ package="net.sf.openrocket"
+ android:versionCode="1"
+ android:versionName="1.0" >
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
+ is actually invoked when a file is selected.
+ -->
+
+
-
+
-
-
-
-
+
+
+
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/res/drawable/rocketglobe.png b/android/res/drawable/rocketglobe.png
new file mode 100644
index 000000000..81417755b
Binary files /dev/null and b/android/res/drawable/rocketglobe.png differ
diff --git a/android/res/layout-land/main.xml b/android/res/layout-land/main.xml
new file mode 100644
index 000000000..0d682a0bf
--- /dev/null
+++ b/android/res/layout-land/main.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/res/layout/main.xml b/android/res/layout/main.xml
index 53b32ec69..f99a4fdd9 100644
--- a/android/res/layout/main.xml
+++ b/android/res/layout/main.xml
@@ -1,31 +1,40 @@
-
-
-
-
+ android:layout_below="@id/openrocket"
+ android:src="@drawable/rocketglobe" />
-
+ android:layout_below="@id/rocketglobe"
+ android:gravity="center_horizontal" >
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/src/net/sf/openrocket/android/Main.java b/android/src/net/sf/openrocket/android/Main.java
index 347115c62..bd80c9fd0 100644
--- a/android/src/net/sf/openrocket/android/Main.java
+++ b/android/src/net/sf/openrocket/android/Main.java
@@ -6,47 +6,18 @@ import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
-import android.os.Handler;
-import android.os.Message;
import android.view.View;
-import android.widget.ImageView;
+import android.view.Window;
public class Main extends Activity {
private static final int PICK_ORK_FILE_RESULT = 1;
- private static final int STOPSPLASH = 0;
- //time in milliseconds
- private static final long SPLASHTIME = 3000;
-
- private ImageView splash;
-
- //handler for splash screen
- private Handler splashHandler = new Handler() {
- /* (non-Javadoc)
- * @see android.os.Handler#handleMessage(android.os.Message)
- */
- @Override
- public void handleMessage(Message msg) {
- switch (msg.what) {
- case STOPSPLASH:
- //remove SplashScreen from view
- splash.setVisibility(View.GONE);
- break;
- }
- super.handleMessage(msg);
- }
- };
-
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
- splash = (ImageView) findViewById(R.id.splashscreen);
- Message msg = new Message();
- msg.what = STOPSPLASH;
- splashHandler.sendMessageDelayed(msg, SPLASHTIME);
}
/* (non-Javadoc)