mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
11a08c186c
"components" segregated. Is this good practice though? It means making a lot of functions for the API between ObjectManagerActivity and Fragment public.
26 lines
928 B
XML
26 lines
928 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center" >
|
|
|
|
<fragment
|
|
android:name="org.openpilot.androidgcs.fragments.SystemAlarmsFragment"
|
|
android:id="@+id/viewer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent" />
|
|
|
|
<fragment
|
|
android:name="org.openpilot.androidgcs.fragments.PFD"
|
|
android:id="@+id/pfd"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent" />
|
|
|
|
<TextView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/system_alarms_status"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_gravity="center" />
|
|
|
|
</LinearLayout> |