Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="horizontal"
  6. android:background="@color/lightGrey">
  7.  
  8. <TextView
  9. android:id="@+id/what_bike_ride"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:layout_weight="1"
  13. android:layout_margin="5dp" />
  14.  
  15. <LinearLayout
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:orientation="vertical"
  19. android:layout_weight="1">
  20.  
  21. <TextView
  22. android:id="@+id/start_ride"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:layout_margin="5dp" />
  26.  
  27. <TextView
  28. android:id="@+id/start_time"
  29. android:layout_width="match_parent"
  30. android:layout_height="wrap_content"
  31. android:layout_margin="5dp" />
  32. </LinearLayout>
  33.  
  34.  
  35. <LinearLayout
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:orientation="vertical"
  39. android:layout_weight="1">
  40.  
  41. <TextView
  42. android:id="@+id/end_ride"
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content"
  45. android:layout_margin="5dp" />
  46.  
  47. <TextView
  48. android:id="@+id/end_time"
  49. android:layout_width="match_parent"
  50. android:layout_height="wrap_content"
  51. android:layout_margin="5dp" />
  52. </LinearLayout>
  53.  
  54.  
  55. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement