質問編集履歴

1

ソース追加

2019/01/20 10:38

投稿

nagomi72
nagomi72

スコア51

test CHANGED
File without changes
test CHANGED
@@ -217,3 +217,65 @@
217
217
  }
218
218
 
219
219
  ```
220
+
221
+
222
+
223
+
224
+
225
+
226
+
227
+ ```ここに言語を入力
228
+
229
+ <?xml version="1.0" encoding="utf-8"?>
230
+
231
+ <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
232
+
233
+ android:id="@+id/drawer_layout"
234
+
235
+ android:layout_width="match_parent"
236
+
237
+ android:layout_height="match_parent">
238
+
239
+
240
+
241
+ <LinearLayout
242
+
243
+ android:layout_width="match_parent"
244
+
245
+ android:layout_height="wrap_content"
246
+
247
+ android:orientation="horizontal">
248
+
249
+
250
+
251
+ <Spinner
252
+
253
+ android:id="@+id/end_month_spinner"
254
+
255
+ android:layout_width="0dp"
256
+
257
+ android:layout_height="wrap_content"
258
+
259
+ android:layout_weight="1" />
260
+
261
+
262
+
263
+ <Spinner
264
+
265
+ android:id="@+id/end_day_spinner"
266
+
267
+ android:layout_width="0dp"
268
+
269
+ android:layout_height="wrap_content"
270
+
271
+ android:layout_weight="1"/>
272
+
273
+
274
+
275
+ </LinearLayout>
276
+
277
+ </android.support.v4.widget.DrawerLayout>
278
+
279
+
280
+
281
+ ```