layout_dategridview_item.xml
1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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>