2009-12-31 16:50:01 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/widget28"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
>
|
|
|
|
<TextView
|
2010-01-01 02:37:27 +00:00
|
|
|
android:id="@+id/title"
|
2009-12-31 16:50:01 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2010-01-01 02:37:27 +00:00
|
|
|
android:layout_marginBottom="10pt"
|
2009-12-31 16:50:01 +00:00
|
|
|
android:text="APRSdroid early beta"
|
2010-01-01 02:37:27 +00:00
|
|
|
android:textSize="12pt"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:gravity="center"
|
2009-12-31 16:50:01 +00:00
|
|
|
>
|
|
|
|
</TextView>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/lat"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="lat"
|
|
|
|
>
|
|
|
|
</TextView>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/lon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="lon"
|
|
|
|
>
|
|
|
|
</TextView>
|
2010-01-01 02:37:27 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="10pt"
|
|
|
|
android:text="status"
|
|
|
|
>
|
|
|
|
</TextView>
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/buttonlayout"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/startbtn"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Start"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
>
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/singlebtn"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Single Shot"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
>
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/stopbtn"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Stop"
|
|
|
|
android:layout_below="@+id/startbtn"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
>
|
|
|
|
</Button>
|
|
|
|
</RelativeLayout>
|
2009-12-31 16:50:01 +00:00
|
|
|
</LinearLayout>
|