<?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/rbGroup" android:layout_width="wrap_content" android:layout_height="50dp" android:layout_marginLeft="10dp" android:layout_marginTop="65dp" android:orientation="horizontal"> <RadioButton android:id="@+id/rbButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="1" /> <RadioButton android:id="@+id/rbButton2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="true" android:text="2" /> <RadioButton android:id="@+id/rbButton3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="3" /> </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> </FrameLayout>