質問編集履歴

1

そーす

2016/10/03 15:29

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -17,3 +17,261 @@
17
17
 
18
18
 
19
19
  宜しくお願いします。
20
+
21
+
22
+
23
+ ```ここに言語を入力
24
+
25
+ <?xml version="1.0" encoding="utf-8"?>
26
+
27
+ <RelativeLayout
28
+
29
+ xmlns:android="http://schemas.android.com/apk/res/android"
30
+
31
+ xmlns:tools="http://schemas.android.com/tools"
32
+
33
+ android:layout_width="match_parent"
34
+
35
+ android:layout_height="match_parent"
36
+
37
+ tools:context="xxx"
38
+
39
+ android:background="@drawable/bg4">
40
+
41
+
42
+
43
+ <LinearLayout
44
+
45
+ android:id="@+id/menuTop3LinearLayout"
46
+
47
+ android:orientation="horizontal"
48
+
49
+ android:layout_width="fill_parent"
50
+
51
+ android:layout_height="wrap_content"
52
+
53
+ android:background="@color/colorMenuTopBackground"
54
+
55
+ >
56
+
57
+ <TextView
58
+
59
+ android:id="@+id/menuTopleft"
60
+
61
+ android:layout_width="fill_parent"
62
+
63
+ android:layout_height="30dp"
64
+
65
+ android:layout_weight="1"
66
+
67
+ android:text="topleft"
68
+
69
+ android:textSize="22sp"
70
+
71
+ android:gravity="center"
72
+
73
+ android:textColor="@color/colorMenuTopText"
74
+
75
+ />
76
+
77
+ <TextView
78
+
79
+ android:id="@+id/menuTopCenter"
80
+
81
+ android:layout_width="fill_parent"
82
+
83
+ android:layout_height="30dp"
84
+
85
+ android:text="topcenter"
86
+
87
+ android:textSize="22sp"
88
+
89
+ android:textColor="@color/colorMenuTopText"
90
+
91
+ android:gravity="center"
92
+
93
+ android:layout_weight="1"
94
+
95
+ />
96
+
97
+ <TextView
98
+
99
+ android:id="@+id/menuTopRight"
100
+
101
+ android:layout_width="fill_parent"
102
+
103
+ android:layout_height="30dp"
104
+
105
+ android:text="topright"
106
+
107
+ android:textSize="22sp"
108
+
109
+ android:textColor="@color/colorMenuTopText"
110
+
111
+ android:gravity="center"
112
+
113
+ android:layout_weight="1"
114
+
115
+ />
116
+
117
+ </LinearLayout>
118
+
119
+
120
+
121
+ <LinearLayout
122
+
123
+ android:orientation="vertical"
124
+
125
+ android:id="@+id/menuMiddleAllLayout"
126
+
127
+ android:layout_width="match_parent"
128
+
129
+ android:layout_height="match_parent"
130
+
131
+ android:layout_below="@id/menuTop3LinearLayout"
132
+
133
+ android:layout_above="@+id/menuLast5LinearLayout">
134
+
135
+
136
+
137
+ <TextView
138
+
139
+ android:id="@+id/menuMiddleScreenName"
140
+
141
+ android:layout_width="match_parent"
142
+
143
+ android:layout_height="wrap_content"
144
+
145
+ android:text="週間スケジュール設定画面"
146
+
147
+ android:textSize="22sp"
148
+
149
+ android:background="#d1cdd1"
150
+
151
+ android:gravity="center"
152
+
153
+ />
154
+
155
+
156
+
157
+ <LinearLayout
158
+
159
+ android:id="@+id/layoutMonday"
160
+
161
+ android:layout_margin="2dp"
162
+
163
+ android:layout_width="match_parent"
164
+
165
+ android:layout_height="wrap_content"
166
+
167
+ android:orientation="horizontal"
168
+
169
+ >
170
+
171
+ <TextView
172
+
173
+ android:text="xxx"
174
+
175
+ android:textColor="#fff"
176
+
177
+ android:layout_width="wrap_content"
178
+
179
+ android:layout_height="wrap_content"
180
+
181
+ android:layout_weight="1"
182
+
183
+ />
184
+
185
+ <TextView
186
+
187
+ android:text="cccc:"
188
+
189
+ android:textColor="#fff"
190
+
191
+ android:layout_width="wrap_content"
192
+
193
+ android:layout_height="wrap_content"
194
+
195
+ />
196
+
197
+ <TextView
198
+
199
+ android:id="@+id/xxxx"
200
+
201
+ android:text="8:00"
202
+
203
+ android:textColor="#fff"
204
+
205
+ android:layout_width="wrap_content"
206
+
207
+ android:layout_height="wrap_content"
208
+
209
+ android:layout_weight="1"
210
+
211
+ />
212
+
213
+ <TextView
214
+
215
+ android:text="オフ"
216
+
217
+ android:layout_width="wrap_content"
218
+
219
+ android:layout_height="wrap_content"
220
+
221
+ />
222
+
223
+ <Switch
224
+
225
+ android:id="@+id/swMonday"
226
+
227
+ android:layout_gravity="right"
228
+
229
+ android:layout_width="wrap_content"
230
+
231
+ android:layout_height="wrap_content"
232
+
233
+
234
+
235
+ android:layout_weight="1"
236
+
237
+ />
238
+
239
+ <TextView
240
+
241
+ android:text="オン"
242
+
243
+ android:layout_width="wrap_content"
244
+
245
+ android:layout_height="wrap_content"
246
+
247
+ android:layout_gravity="right"
248
+
249
+ />
250
+
251
+ </LinearLayout>
252
+
253
+ </LinearLayout>
254
+
255
+ </RelativeLayout>
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+ ```
270
+
271
+
272
+
273
+ 追記:
274
+
275
+
276
+
277
+ ![イメージ説明](1159ca71729f8338a610170c123d50f4.png)