/walkytalky/res/layout/new_loc.xml

http://eyes-free.googlecode.com/ · XML · 98 lines · 97 code · 1 blank · 0 comment · 0 complexity · 2352dda7432f3e4a69398d5c58efc4b1 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView 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. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  8. android:orientation="vertical"
  9. android:layout_width="fill_parent"
  10. android:layout_height="fill_parent"
  11. >
  12. <TextView
  13. android:layout_width="fill_parent"
  14. android:layout_height="wrap_content"
  15. android:text=" "
  16. />
  17. <TextView
  18. android:layout_width="fill_parent"
  19. android:layout_height="wrap_content"
  20. android:text=" "
  21. />
  22. <LinearLayout
  23. android:orientation="horizontal"
  24. android:layout_width="fill_parent"
  25. android:layout_height="wrap_content"
  26. >
  27. <AutoCompleteTextView
  28. android:id="@+id/dest_EditText"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:layout_weight="1"
  32. android:hint="Enter destination"
  33. />
  34. <Button
  35. android:id="@+id/goTextInput_Button"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:text="Go"
  39. />
  40. </LinearLayout>
  41. <TextView
  42. android:layout_width="fill_parent"
  43. android:layout_height="wrap_content"
  44. android:text=" "
  45. />
  46. <Button
  47. android:id="@+id/goFavorite_Button"
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:text="Go to favorite destinations"
  51. />
  52. <TextView
  53. android:layout_width="fill_parent"
  54. android:layout_height="wrap_content"
  55. android:text=" "
  56. />
  57. <Button
  58. android:id="@+id/goRecent_Button"
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:text="Go to recent destinations"
  62. />
  63. <TextView
  64. android:layout_width="fill_parent"
  65. android:layout_height="wrap_content"
  66. android:text=" "
  67. />
  68. <Button
  69. android:id="@+id/goContact_Button"
  70. android:layout_width="wrap_content"
  71. android:layout_height="wrap_content"
  72. android:text="Go to contact destinations"
  73. />
  74. <TextView
  75. android:layout_width="fill_parent"
  76. android:layout_height="wrap_content"
  77. android:text=" "
  78. />
  79. <Button
  80. android:id="@+id/markFavorite_Button"
  81. android:layout_width="wrap_content"
  82. android:layout_height="wrap_content"
  83. android:text="Add favorite"
  84. />
  85. <TextView
  86. android:layout_width="fill_parent"
  87. android:layout_height="wrap_content"
  88. android:text=" "
  89. />
  90. <Button
  91. android:id="@+id/removeFavorite_Button"
  92. android:layout_width="wrap_content"
  93. android:layout_height="wrap_content"
  94. android:text="Remove favorite"
  95. />
  96. </LinearLayout>
  97. </ScrollView>