質問編集履歴
1
ソース追加
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -107,4 +107,35 @@
|
|
|
107
107
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
```ここに言語を入力
|
|
115
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
116
|
+
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
117
|
+
android:id="@+id/drawer_layout"
|
|
118
|
+
android:layout_width="match_parent"
|
|
119
|
+
android:layout_height="match_parent">
|
|
120
|
+
|
|
121
|
+
<LinearLayout
|
|
122
|
+
android:layout_width="match_parent"
|
|
123
|
+
android:layout_height="wrap_content"
|
|
124
|
+
android:orientation="horizontal">
|
|
125
|
+
|
|
126
|
+
<Spinner
|
|
127
|
+
android:id="@+id/end_month_spinner"
|
|
128
|
+
android:layout_width="0dp"
|
|
129
|
+
android:layout_height="wrap_content"
|
|
130
|
+
android:layout_weight="1" />
|
|
131
|
+
|
|
132
|
+
<Spinner
|
|
133
|
+
android:id="@+id/end_day_spinner"
|
|
134
|
+
android:layout_width="0dp"
|
|
135
|
+
android:layout_height="wrap_content"
|
|
136
|
+
android:layout_weight="1"/>
|
|
137
|
+
|
|
138
|
+
</LinearLayout>
|
|
139
|
+
</android.support.v4.widget.DrawerLayout>
|
|
140
|
+
|
|
110
141
|
```
|