Newer
Older
CitrusClient / app / src / main / res / layout / fragment_other_home.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".views.OtherHomeFragment">
  7.  
  8. <!-- TODO: Update blank fragment layout -->
  9. <TextView
  10. android:id="@+id/date_background"
  11. android:layout_width="match_parent"
  12. android:layout_height="50dp"
  13. android:background="#C6F6A9"
  14. android:gravity="center|top"
  15. android:textAlignment="center"
  16. android:textSize="30sp" />
  17. <Button
  18. android:id="@+id/date_button"
  19. android:layout_width="240dp"
  20. android:layout_height="50dp"
  21. android:background="@android:color/transparent"
  22. android:gravity="center|top"
  23. android:layout_marginLeft="80dp"
  24. android:textAlignment="center"
  25. android:textSize="20sp"
  26. android:textColor="#000000" />
  27.  
  28.  
  29. <ImageButton
  30. android:id="@+id/prev_day_botton"
  31. android:layout_width="50dp"
  32. android:layout_height="50dp"
  33. android:backgroundTint="#00000000"
  34. android:clickable="true"
  35. android:src="@drawable/baseline_arrow_back_ios_new_24" />
  36.  
  37. <ImageButton
  38. android:id="@+id/next_day_botton"
  39. android:layout_width="50dp"
  40. android:layout_height="50dp"
  41. android:layout_gravity="right"
  42. android:backgroundTint="#00000000"
  43. android:clickable="true"
  44. android:src="@drawable/baseline_arrow_forward_ios_24" />
  45.  
  46. <TextView
  47. android:id="@+id/textView4"
  48. android:layout_width="match_parent"
  49. android:layout_height="40dp"
  50. android:layout_marginLeft="10dp"
  51. android:layout_marginTop="60dp"
  52. android:layout_marginRight="210dp"
  53. android:background="#f0f8ff"
  54. android:gravity="center"
  55. android:text="TO-DO"
  56. android:textAlignment="center"
  57. android:textSize="20sp"
  58. android:textColor="#000000"
  59.  
  60. />
  61. <TextView
  62. android:id="@+id/textView5"
  63. android:layout_width="match_parent"
  64. android:layout_height="40dp"
  65. android:layout_marginLeft="210dp"
  66. android:layout_marginTop="60dp"
  67. android:layout_marginRight="10dp"
  68. android:background="#808080"
  69. android:gravity="center"
  70. android:text="schedule"
  71. android:textAlignment="center"
  72. android:textSize="20dp"
  73. android:textColor="#FFFFFF"
  74.  
  75. />
  76.  
  77. <androidx.recyclerview.widget.RecyclerView
  78. android:id="@+id/my_todos_list"
  79. android:layout_width="match_parent"
  80. android:layout_height="match_parent"
  81. android:layout_marginTop="120dp"
  82. android:layout_marginBottom="20dp"
  83. android:layout_marginLeft="10dp"
  84. android:layout_marginRight="210dp"/>
  85.  
  86. <androidx.recyclerview.widget.RecyclerView
  87. android:id="@+id/my_schedule_list"
  88. android:layout_width="match_parent"
  89. android:layout_height="match_parent"
  90. android:layout_gravity="right"
  91. android:layout_marginTop="120dp"
  92. android:layout_marginBottom="20dp"
  93. android:layout_marginLeft="210dp"
  94. android:layout_marginRight="10dp" />
  95.  
  96.  
  97.  
  98.  
  99.  
  100. />
  101.  
  102. </FrameLayout>
  103.