2011-12-24 00:38:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
2012-01-03 02:20:10 +00:00
|
|
|
android:id="@+id/heading"
|
2011-12-24 00:38:22 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-01-03 02:20:10 +00:00
|
|
|
android:text="Started" />
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/rocketSimulations"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2011-12-24 00:38:22 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|