2012-01-03 18:56:38 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-02-09 21:25:29 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-01-03 18:56:38 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-02-09 21:25:29 +00:00
|
|
|
android:background="@drawable/starfield"
|
2012-01-03 18:56:38 +00:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2012-02-09 21:25:29 +00:00
|
|
|
<ImageView
|
2012-01-09 19:00:19 +00:00
|
|
|
android:id="@+id/openrocket"
|
2012-01-03 18:56:38 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-02-09 21:25:29 +00:00
|
|
|
android:layout_weight="1"
|
2012-01-09 19:00:19 +00:00
|
|
|
android:gravity="center_horizontal"
|
2012-07-18 21:20:23 +00:00
|
|
|
android:paddingTop="22dp"
|
2012-02-09 21:25:29 +00:00
|
|
|
android:src="@drawable/openrocket" />
|
2012-01-03 18:56:38 +00:00
|
|
|
|
2012-02-29 18:13:20 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:text="@string/version" />
|
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/rocketglobe"
|
2012-01-03 18:56:38 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-02-09 21:25:29 +00:00
|
|
|
android:layout_weight="4"
|
2012-01-09 19:00:19 +00:00
|
|
|
android:src="@drawable/rocketglobe" />
|
2012-01-03 18:56:38 +00:00
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
<LinearLayout
|
2012-01-03 18:56:38 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-02-09 21:25:29 +00:00
|
|
|
android:layout_weight="1"
|
2012-01-09 19:00:19 +00:00
|
|
|
android:gravity="center_horizontal" >
|
2012-02-25 03:49:56 +00:00
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
<Button
|
2012-02-09 21:25:29 +00:00
|
|
|
android:id="@+id/main_open"
|
2012-01-09 19:00:19 +00:00
|
|
|
android:layout_width="wrap_content"
|
2012-07-18 21:20:23 +00:00
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_gravity="center"
|
2012-02-23 17:33:15 +00:00
|
|
|
android:text="@string/openfilelabel" />
|
2012-02-25 03:49:56 +00:00
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
<Button
|
2012-02-09 21:25:29 +00:00
|
|
|
android:id="@+id/main_browse"
|
2012-01-09 19:00:19 +00:00
|
|
|
android:layout_width="wrap_content"
|
2012-07-18 21:20:23 +00:00
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_gravity="center"
|
2012-02-23 17:33:15 +00:00
|
|
|
android:text="@string/viewmotorslabel" />
|
2012-01-03 18:56:38 +00:00
|
|
|
|
2012-07-18 21:20:23 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/main_donate"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:background="@drawable/sf_donate" />
|
|
|
|
</LinearLayout>
|
2012-02-25 03:49:56 +00:00
|
|
|
|
2012-02-09 21:25:29 +00:00
|
|
|
</LinearLayout>
|