<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:backgroundTint="#BBE38D"
tools:context=".views.CalendarFragment">
<!-- TODO: Update blank fragment layout -->
<Button
android:id="@+id/NextMonth"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="300dp"
android:layout_marginTop="10dp"
android:backgroundTint="#CFFF97"
android:text="次の月"
android:textColor="#000000" />
<TextView
android:id="@+id/Month"
android:layout_width="match_parent"
android:layout_height="65dp"
android:background="#CFFF97"
android:gravity="center|center_horizontal"
android:textColor="#050000"
android:textSize="24sp" />
<Button
android:id="@+id/PrevMonth"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:backgroundTint="#CFFF97"
android:text="前の月"
android:textColor="#020202" />
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="120dp">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginHorizontal="1dp"
android:layout_weight="1"
android:text="日"
android:textAlignment="center" />
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginHorizontal="1dp"
android:layout_weight="1"
android:text="月"
android:textAlignment="center" />
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginHorizontal="1dp"
android:layout_weight="1"
android:text="火"
android:textAlignment="center" />
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginHorizontal="1dp"
android:layout_weight="1"
android:text="水"
android:textAlignment="center" />
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginHorizontal="1dp"
android:layout_weight="1"
android:text="木"
android:textAlignment="center" />
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginHorizontal="1dp"
android:layout_weight="1"
android:text="金"
android:textAlignment="center" />
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginHorizontal="1dp"
android:layout_weight="1"
android:text="土"
android:textAlignment="center" />
</TableRow>
<RadioGroup
android:id="@+id/SelectButton"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="65dp"
android:orientation="horizontal">
<RadioButton
android:id="@+id/rbTodo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="todo" />
<RadioButton
android:id="@+id/rbSchedule"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="schedule" />
<RadioButton
android:id="@+id/rbBoth"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="todoANDschedule" />
</RadioGroup>
<TableLayout
android:id="@+id/calendarlayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="140dp">
<TableRow
android:id="@+id/TableRow"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<TableRow
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<TableRow
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<TableRow
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<TableRow
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<TableRow
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</TableLayout>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/floatingActionButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="355dp"
android:layout_marginTop="70dp"
android:clickable="true"
android:src="@drawable/baseline_add_24"
app:fabSize="mini" />
</FrameLayout>