mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
6bed9fcb3c
The ObjectManagerFragment will automatically registers against the activity to be notified when an onOPConnected or onOPDisconnected method occurs. The Fragment API also duplicates the registerObjectUpdates(UAVObject) method from ObjectManagerActivity so that it's objectUpdated() method is called whenever and using the appropriate UI thread.
18 lines
608 B
XML
18 lines
608 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:orientation="vertical" >
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar3"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView
|
|
android:id="@+id/system_alarms_fragment_field"
|
|
android:layout_width="200dip"
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout> |