fragment_layout_location.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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_marginTop="2dp"
  15. android:layout_marginBottom="4dp"
  16. android:paddingTop="5dp">
  17. <TextView
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:textAppearance="@android:style/TextAppearance.Large"
  21. android:text="@string/menu_location"
  22. android:id="@+id/textView2"
  23. android:textStyle="bold"
  24. android:layout_marginLeft="10dp"
  25. android:textColor="@color/section_title"/>
  26. <LinearLayout
  27. android:orientation="vertical"
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. android:background="@drawable/entry"
  31. android:padding="7dp">
  32. <TextView
  33. android:layout_width="fill_parent"
  34. android:layout_height="wrap_content"
  35. android:textAppearance="@android:style/TextAppearance.Medium"
  36. android:text="@string/home_section_location_text_0"
  37. android:id="@+id/textView3"
  38. />
  39. <TextView
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:textAppearance="?android:attr/textAppearanceSmall"
  43. android:id="@+id/tv_location_distance"
  44. android:text="@string/home_section_location_text_calculating"
  45. android:layout_margin="10dp"/>
  46. <com.google.android.gms.maps.MapView
  47. android:id="@+id/mapview"
  48. android:layout_width="fill_parent"
  49. android:layout_height="fill_parent"
  50. android:minHeight="150dp"
  51. android:layout_margin="7dp"/>
  52. </LinearLayout>
  53. </LinearLayout>
  54. </LinearLayout>