]> git.gag.com Git - debian/openrocket/blob - android/res/layout/simulation_detail.xml
605f4e74fd135eb9acba39d7a2342b02e7f0dc10
[debian/openrocket] / android / res / layout / simulation_detail.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="match_parent"
4     android:layout_height="match_parent"
5     android:orientation="vertical" >
6
7     <fragment
8         android:id="@+id/simulationPlotFragment"
9         android:layout_width="fill_parent"
10         android:layout_height="fill_parent"
11         android:layout_marginLeft="0px"
12         android:layout_marginRight="0px"
13         android:layout_marginTop="5px"
14         class="net.sf.openrocket.android.simulation.SimulationPlotFragment"
15         title="Simulation" />
16
17     <SlidingDrawer
18         android:id="@+id/drawer"
19         android:layout_width="match_parent"
20         android:layout_height="match_parent"
21         android:layout_weight="0.4"
22         android:content="@+id/simulationConfigurationForm"
23         android:handle="@+id/handle" >
24
25         <ImageView
26             android:id="@+id/handle"
27             android:layout_width="match_parent"
28             android:layout_height="30px"
29             android:src="@drawable/arrow_up_float"
30             android:text="" />
31
32         <TabHost
33             android:id="@+id/simulationConfigurationForm"
34             android:layout_width="fill_parent"
35             android:layout_height="fill_parent"
36             android:background="@android:color/black" >
37
38             <LinearLayout
39                 android:layout_width="fill_parent"
40                 android:layout_height="fill_parent"
41                 android:orientation="vertical" >
42
43                 <TabWidget
44                     android:id="@android:id/tabs"
45                     android:layout_width="fill_parent"
46                     android:layout_height="wrap_content" />
47
48                 <FrameLayout
49                     android:id="@android:id/tabcontent"
50                     android:layout_width="fill_parent"
51                     android:layout_height="fill_parent" >
52
53                     <ListView
54                         android:id="@+id/simulationEventsList"
55                         android:layout_width="match_parent"
56                         android:layout_height="wrap_content" />
57
58                     <ListView
59                         android:id="@+id/simulationSeriesList"
60                         android:layout_width="match_parent"
61                         android:layout_height="wrap_content" />
62                 </FrameLayout>
63             </LinearLayout>
64         </TabHost>
65     </SlidingDrawer>
66
67 </FrameLayout>