2012-08-06 09:04:58 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2012-08-06 13:52:42 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center" >
|
2012-08-06 09:04:58 -05:00
|
|
|
|
2012-08-08 08:37:35 -05:00
|
|
|
<fragment
|
2012-08-08 12:41:57 -05:00
|
|
|
android:name="org.openpilot.androidgcs.fragments.SystemAlarmsFragment"
|
2012-08-08 08:37:35 -05:00
|
|
|
android:id="@+id/viewer"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent" />
|
2012-08-06 09:04:58 -05:00
|
|
|
|
2012-08-08 12:41:57 -05:00
|
|
|
<fragment
|
|
|
|
android:name="org.openpilot.androidgcs.fragments.PFD"
|
|
|
|
android:id="@+id/pfd"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2012-08-08 15:27:40 -05:00
|
|
|
</LinearLayout>
|