2012-01-03 18:56:38 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-01-09 19:00:19 +00:00
|
|
|
<RelativeLayout 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"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
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-01-09 19:00:19 +00:00
|
|
|
android:gravity="center_horizontal"
|
2012-01-03 18:56:38 +00:00
|
|
|
android:text="Welcome to OpenRocket" />
|
|
|
|
|
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-01-09 19:00:19 +00:00
|
|
|
android:layout_below="@id/openrocket"
|
|
|
|
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-01-09 19:00:19 +00:00
|
|
|
android:layout_below="@id/rocketglobe"
|
|
|
|
android:gravity="center_horizontal" >
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-02-08 02:22:45 +00:00
|
|
|
android:id="@+id/main_open"
|
2012-01-09 19:00:19 +00:00
|
|
|
android:text="View ork file" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-02-08 02:22:45 +00:00
|
|
|
android:id="@+id/main_browse"
|
2012-01-09 19:00:19 +00:00
|
|
|
android:text="View motors" />
|
|
|
|
</LinearLayout>
|
2012-01-03 18:56:38 +00:00
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
</RelativeLayout>
|