-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity.xml
74 lines (62 loc) · 2.19 KB
/
activity.xml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#ffffff"
>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="27dp"
android:layout_marginTop="5px"
android:layout_marginLeft="0px"
android:layout_marginRight="0px"
android:layout_weight="0.02">
<Button
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="PRE"
android:id="@+id/pre"
android:layout_weight="0.16"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:id="@+id/tv_dater"
android:background="#11ff00"
android:textColor="#ffffff"
android:layout_weight="3"
android:textSize="31.5sp"
android:gravity="center_horizontal|center_vertical"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="NEXT"
android:id="@+id/next"
android:layout_weight="0.16"
/>
</LinearLayout>
<TextView
android:id="@+id/tv_date"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="#ff00000"
android:gravity="center_vertical"
android:paddingLeft="10dp"
android:textColor="#ffffff"
android:textSize="20sp"
android.layout_weight="0.01"
/>
<GridView
android:layout_marginTop = "10dp"
android:id = "@+id/gridview"
android:layout_weight="1"
android:layout_height="0dp"
android:layout_width="match_parent"
android:numColumns="7"
android:listSelector="#b9ff01"
>
</GridView>
</LinearLayout>