<?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 --> <TextView android:layout_width="match_parent" android:layout_height="66dp" android:layout_marginTop="30dp" android:background="#CFFF97" android:gravity="center|center_horizontal" android:text="@string/hello_blank_fragment" android:textColor="#050000" android:textSize="24sp" tools:text="4月" /> <Button android:id="@+id/button9" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:layout_marginTop="40dp" android:backgroundTint="#CFFF97" android:text="Button" android:textColor="#020202" /> <TableRow android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="150dp"> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:layout_marginHorizontal="1dp" android:textAlignment="center" android:text="日" /> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:layout_marginHorizontal="1dp" android:textAlignment="center" android:text="月" /> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:layout_marginHorizontal="1dp" android:textAlignment="center" android:text="火" /> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:layout_marginHorizontal="1dp" android:textAlignment="center" android:text="水" /> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:layout_marginHorizontal="1dp" android:textAlignment="center" android:text="木" /> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:layout_marginHorizontal="1dp" android:textAlignment="center" android:text="金" /> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:layout_marginHorizontal="1dp" android:textAlignment="center" android:text="土" /> </TableRow> <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="300dp" android:layout_marginTop="40dp" android:backgroundTint="#CFFF97" android:text="Button" android:textColor="#000000" /> <RadioGroup android:id="@+id/rbGroup" android:layout_width="wrap_content" android:layout_height="50dp" android:layout_marginLeft="10dp" android:layout_marginTop="100dp" 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="170dp"> <TableRow android:id="@+id/tablelayout" 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> <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>