/walkytalky/res/layout/locationbookmarker.xml

http://eyes-free.googlecode.com/ · XML · 32 lines · 29 code · 3 blank · 0 comment · 0 complexity · 5692537af2759f8e21feeded4b4beb43 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"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. >
  7. <TextView
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text=" "
  11. />
  12. <Button
  13. android:id="@+id/saveLocation_Button"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:text="Save current location"
  17. />
  18. <TextView
  19. android:layout_width="fill_parent"
  20. android:layout_height="wrap_content"
  21. android:text=" "
  22. />
  23. <EditText
  24. android:id="@+id/location_EditText"
  25. android:layout_width="fill_parent"
  26. android:layout_height="fill_parent"
  27. android:layout_weight="1"
  28. />
  29. </LinearLayout>