/there/res/layout/set_location_form.xml
XML | 38 lines | 28 code | 10 blank | 0 comment | 0 complexity | ea07aec276fafad49ffec484760ecad3 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" android:layout_width="fill_parent" 4 android:layout_height="fill_parent"> 5 6 <TextView android:layout_width="fill_parent" 7 android:layout_height="wrap_content" android:text="Location Name:" /> 8 <EditText android:id="@+id/NameEditText" android:text="" 9 android:layout_width="fill_parent" android:layout_height="wrap_content" /> 10 <TextView android:layout_width="fill_parent" 11 android:layout_height="wrap_content" android:text=" " /> 12 13 14 15 <TextView android:id="@+id/latTextView" android:layout_width="wrap_content" 16 android:layout_height="wrap_content" android:text="Lat: ???" /> 17 <TextView android:id="@+id/lonTextView" android:layout_width="wrap_content" 18 android:layout_height="wrap_content" android:text="Lon: ???" /> 19 <TextView android:id="@+id/accuracyTextView" android:layout_width="wrap_content" 20 android:layout_height="wrap_content" android:text="Accuracy: ???" /> 21 22 23 <TextView android:layout_width="fill_parent" 24 android:layout_height="wrap_content" android:text=" " /> 25 26 27 <LinearLayout android:orientation="horizontal" 28 android:layout_width="fill_parent" android:layout_height="wrap_content"> 29 <Button android:id="@+id/SaveButton" android:text="Save" 30 android:layout_width="wrap_content" android:layout_height="wrap_content" /> 31 <TextView android:layout_width="wrap_content" 32 android:layout_height="wrap_content" android:text=" " /> 33 <Button android:id="@+id/CancelButton" android:text="Cancel" 34 android:layout_width="wrap_content" android:layout_height="wrap_content" /> 35 </LinearLayout> 36 37 38</LinearLayout>