<?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:ignore="HardcodedText">
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"
|
android:visibility="visible">
|
|
<com.haibin.oldcalendarview.WrapViewPager
|
android:id="@+id/vp_calendar"
|
android:layout_marginTop="41dp"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
|
<LinearLayout
|
android:id="@+id/ll_week"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:background="#00FFFFFF"
|
android:orientation="horizontal"
|
android:paddingBottom="8dp"
|
android:paddingTop="8dp"
|
tools:ignore="UnusedAttribute">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="日"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="一"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="二"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="三"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="四"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="五"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="六"
|
android:textSize="12sp" />
|
</LinearLayout>
|
|
<View
|
android:id="@+id/line"
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:layout_marginTop="40dp"
|
android:layout_marginLeft="16dp"
|
android:layout_marginRight="16dp"
|
android:background="#cfcfcf" />
|
|
|
</FrameLayout>
|
|
<com.haibin.oldcalendarview.MonthSelectLayout
|
android:id="@+id/selectLayout"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="#ffffff"
|
android:paddingLeft="12dp"
|
android:paddingRight="12dp"
|
android:visibility="gone" />
|
</FrameLayout>
|