This repository has been archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
activity_main.xml
160 lines (130 loc) · 5.79 KB
/
activity_main.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<ScrollView 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"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Date"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:format12Hour="yyyy/MM/dd EEEE"
app:format24Hour="yyyy/MM/dd EEEE"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:format12Hour="y/M/d E"
app:format24Hour="y/M/d E"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="\nNormal"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:id="@+id/focus_use_12"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="focus 12"/>
<Button
android:id="@+id/focus_use_24"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="focus 24"/>
<Button
android:id="@+id/use_system"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="system"/>
</LinearLayout>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:id="@+id/normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<!-- ===================================================== -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="\nForce use 12 format"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="format12"
app:format12Hour="a h:m:s"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="format12"
app:format12Hour="a hh:mm:ss"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="\nForce use 24 format"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="format24"
app:format24Hour="k:m:s"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="format24"
app:format24Hour="kk:mm:ss"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="\nUse system format"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="formatAuto"
app:format12Hour="a h:m:s"
app:format24Hour="k:m:s"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="formatAuto"
app:format12Hour="a hh:mm:ss"
app:format24Hour="kk:mm:ss"/>
<!-- ===================================================== -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="\nH and HH for 24 can be used above API 17 only"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="format24"
app:format24Hour="H:m:s"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="format24"
app:format24Hour="HH:mm:ss"/>
<!-- ===================================================== -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="\nGMT, Washington D.C. and Tokyo"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="format12"
app:format12Hour="y/M/d E a h:m:s"
app:timeZone="GMT-6"/>
<net.imknown.bettertextclockbackportlibrary.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:forceUse="format12"
app:format12Hour="y/M/d E a h:m:s"
app:timeZone="GMT+9"/>
</LinearLayout>
</ScrollView>