layout_dategridview_item.xml 1.21 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:paddingBottom="5dp">

    <TextView
        android:id="@+id/dategv_item_tv_week"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:gravity="center"
        android:includeFontPadding="false"
        android:paddingBottom="10dp"
        android:paddingTop="9dp"
        android:textColor="#999"
        android:textSize="10sp"
        tools:text="日" />


    <RelativeLayout
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_gravity="center_horizontal">

        <TextView
            android:id="@+id/dategv_item_tv_day"
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_centerInParent="true"
            android:gravity="center"
            android:textSize="16sp"
            tools:text="1" />

    </RelativeLayout>
</LinearLayout>