- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context=".views.OtherHomeFragment">
- <!-- TODO: Update blank fragment layout -->
- <TextView
- android:id="@+id/date_background"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:background="#C6F6A9"
- android:gravity="center|top"
- android:textAlignment="center"
- android:textSize="30sp" />
- <Button
- android:id="@+id/date_button"
- android:layout_width="240dp"
- android:layout_height="50dp"
- android:background="@android:color/transparent"
- android:gravity="center|top"
- android:layout_marginLeft="80dp"
- android:textAlignment="center"
- android:textSize="20sp"
- android:textColor="#000000" />
- <ImageButton
- android:id="@+id/prev_day_botton"
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:backgroundTint="#00000000"
- android:clickable="true"
- android:src="@drawable/baseline_arrow_back_ios_new_24" />
- <ImageButton
- android:id="@+id/next_day_botton"
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:layout_gravity="right"
- android:backgroundTint="#00000000"
- android:clickable="true"
- android:src="@drawable/baseline_arrow_forward_ios_24" />
- <TextView
- android:id="@+id/textView4"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="60dp"
- android:layout_marginRight="210dp"
- android:background="#f0f8ff"
- android:gravity="center"
- android:text="TO-DO"
- android:textAlignment="center"
- android:textSize="20sp"
- android:textColor="#000000"
- />
- <TextView
- android:id="@+id/textView5"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_marginLeft="210dp"
- android:layout_marginTop="60dp"
- android:layout_marginRight="10dp"
- android:background="#808080"
- android:gravity="center"
- android:text="schedule"
- android:textAlignment="center"
- android:textSize="20dp"
- android:textColor="#FFFFFF"
- />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/my_todos_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="120dp"
- android:layout_marginBottom="20dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="210dp"/>
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/my_schedule_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="right"
- android:layout_marginTop="120dp"
- android:layout_marginBottom="20dp"
- android:layout_marginLeft="210dp"
- android:layout_marginRight="10dp" />
- />
- </FrameLayout>