67 lines
2.4 KiB
XML
67 lines
2.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical" >
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/simulationPlotFragment"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:layout_marginLeft="0px"
|
||
|
android:layout_marginRight="0px"
|
||
|
android:layout_marginTop="5px"
|
||
|
class="net.sf.openrocket.android.simulation.SimulationPlotFragment"
|
||
|
title="Simulation" />
|
||
|
|
||
|
<SlidingDrawer
|
||
|
android:id="@+id/drawer"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_weight="0.4"
|
||
|
android:content="@+id/simulationConfigurationForm"
|
||
|
android:handle="@+id/handle" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/handle"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="30px"
|
||
|
android:src="@drawable/arrow_up_float"
|
||
|
android:text="" />
|
||
|
|
||
|
<TabHost
|
||
|
android:id="@+id/simulationConfigurationForm"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:background="@android:color/black" >
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:orientation="vertical" >
|
||
|
|
||
|
<TabWidget
|
||
|
android:id="@android:id/tabs"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@android:id/tabcontent"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent" >
|
||
|
|
||
|
<ListView
|
||
|
android:id="@+id/simulationEventsList"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
<ListView
|
||
|
android:id="@+id/simulationSeriesList"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
</FrameLayout>
|
||
|
</LinearLayout>
|
||
|
</TabHost>
|
||
|
</SlidingDrawer>
|
||
|
|
||
|
</FrameLayout>
|