fragment_layout_location.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="fill_parent"
  5. android:orientation="vertical"
  6. android:layout_height="fill_parent"
  7. android:background="@color/background_app"
  8. tools:ignore="Overdraw">
  9. <LinearLayout
  10. android:orientation="vertical"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:background="@drawable/section"
  14. android:layout_margin="7dp"
  15. android:padding="7dp">
  16. <TextView
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:textAppearance="@android:style/TextAppearance.Large"
  20. android:text="@string/menu_location"
  21. android:id="@+id/textView2"
  22. android:textStyle="bold"/>
  23. <LinearLayout
  24. android:orientation="vertical"
  25. android:layout_width="match_parent"
  26. android:layout_height="match_parent"
  27. android:background="@drawable/entry"
  28. android:padding="7dp">
  29. <TextView
  30. android:layout_width="fill_parent"
  31. android:layout_height="wrap_content"
  32. android:textAppearance="@android:style/TextAppearance.Medium"
  33. android:text="@string/home_section_location_text_0"
  34. android:id="@+id/textView3"
  35. />
  36. <TextView
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:textAppearance="?android:attr/textAppearanceSmall"
  40. android:id="@+id/tv_location_distance"
  41. android:text="@string/home_section_location_text_calculating"
  42. android:layout_margin="10dp"/>
  43. <com.google.android.gms.maps.MapView
  44. android:id="@+id/mapview"
  45. android:layout_width="fill_parent"
  46. android:layout_height="fill_parent"
  47. android:minHeight="150dp"
  48. android:layout_margin="7dp"/>
  49. </LinearLayout>
  50. </LinearLayout>
  51. </LinearLayout>