/there/res/layout/set_location_form.xml

http://eyes-free.googlecode.com/ · 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. <TextView android:layout_width="fill_parent"
  6. android:layout_height="wrap_content" android:text="Location Name:" />
  7. <EditText android:id="@+id/NameEditText" android:text=""
  8. android:layout_width="fill_parent" android:layout_height="wrap_content" />
  9. <TextView android:layout_width="fill_parent"
  10. android:layout_height="wrap_content" android:text=" " />
  11. <TextView android:id="@+id/latTextView" android:layout_width="wrap_content"
  12. android:layout_height="wrap_content" android:text="Lat: ???" />
  13. <TextView android:id="@+id/lonTextView" android:layout_width="wrap_content"
  14. android:layout_height="wrap_content" android:text="Lon: ???" />
  15. <TextView android:id="@+id/accuracyTextView" android:layout_width="wrap_content"
  16. android:layout_height="wrap_content" android:text="Accuracy: ???" />
  17. <TextView android:layout_width="fill_parent"
  18. android:layout_height="wrap_content" android:text=" " />
  19. <LinearLayout android:orientation="horizontal"
  20. android:layout_width="fill_parent" android:layout_height="wrap_content">
  21. <Button android:id="@+id/SaveButton" android:text="Save"
  22. android:layout_width="wrap_content" android:layout_height="wrap_content" />
  23. <TextView android:layout_width="wrap_content"
  24. android:layout_height="wrap_content" android:text=" " />
  25. <Button android:id="@+id/CancelButton" android:text="Cancel"
  26. android:layout_width="wrap_content" android:layout_height="wrap_content" />
  27. </LinearLayout>
  28. </LinearLayout>