質問編集履歴
1
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,11 +32,9 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
-
|
36
|
-
|
37
|
-
|
35
|
+
ZukanOpenHelper
|
36
|
+
|
38
|
-
|
37
|
+
```java
|
39
|
-
|
40
38
|
|
41
39
|
package…
|
42
40
|
|
@@ -114,7 +112,9 @@
|
|
114
112
|
|
115
113
|
```
|
116
114
|
|
117
|
-
|
115
|
+
MainActivity
|
116
|
+
|
117
|
+
```java
|
118
118
|
|
119
119
|
package…
|
120
120
|
|
@@ -216,6 +216,84 @@
|
|
216
216
|
|
217
217
|
```
|
218
218
|
|
219
|
+
list_item
|
220
|
+
|
221
|
+
```xml
|
222
|
+
|
223
|
+
<?xml version="1.0" encoding="utf-8"?>
|
224
|
+
|
225
|
+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
226
|
+
|
227
|
+
xmlns:app="http://schemas.android.com/apk/res-auto"
|
228
|
+
|
229
|
+
android:padding = "16dp"
|
230
|
+
|
231
|
+
android:orientation="horizontal"
|
232
|
+
|
233
|
+
android:layout_width="match_parent"
|
234
|
+
|
235
|
+
android:layout_height="wrap_content">
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
<ImageView
|
240
|
+
|
241
|
+
android:id="@+id/icon"
|
242
|
+
|
243
|
+
android:layout_width="0dp"
|
244
|
+
|
245
|
+
android:layout_height="match_parent"
|
246
|
+
|
247
|
+
android:layout_weight="1"
|
248
|
+
|
249
|
+
android:layout_marginRight="16dp"
|
250
|
+
|
251
|
+
android:src="@mipmap/ic_launcher_round" />
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
<LinearLayout
|
256
|
+
|
257
|
+
android:layout_width="0dp"
|
258
|
+
|
259
|
+
android:layout_height="wrap_content"
|
260
|
+
|
261
|
+
android:layout_weight="5"
|
262
|
+
|
263
|
+
android:orientation="vertical">
|
264
|
+
|
265
|
+
|
266
|
+
|
267
|
+
<TextView
|
268
|
+
|
269
|
+
android:id="@+id/name"
|
270
|
+
|
271
|
+
android:textSize="24sp"
|
272
|
+
|
273
|
+
android:layout_width="match_parent"
|
274
|
+
|
275
|
+
android:layout_height="wrap_content"/>
|
276
|
+
|
277
|
+
<TextView
|
278
|
+
|
279
|
+
android:id="@+id/loc"
|
280
|
+
|
281
|
+
android:textSize="16sp"
|
282
|
+
|
283
|
+
android:textColor="#999999"
|
284
|
+
|
285
|
+
android:layout_width="match_parent"
|
286
|
+
|
287
|
+
android:layout_height="wrap_content"/>
|
288
|
+
|
289
|
+
|
290
|
+
|
291
|
+
</LinearLayout>
|
292
|
+
|
293
|
+
</LinearLayout>
|
294
|
+
|
295
|
+
```
|
296
|
+
|
219
297
|
|
220
298
|
|
221
299
|
### 補足情報
|