質問編集履歴
1
HomeFragmentにて使用している「R.id.list」のコードを追記致しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -258,4 +258,50 @@
|
|
258
258
|
|
259
259
|
|
260
260
|
|
261
|
+
また、HomeFragmentにて使用している「R.id.list」は以下のXMLファイル「list_view.xml」にて記述しております。
|
262
|
+
|
263
|
+
```XML
|
264
|
+
|
265
|
+
<androidx.constraintlayout.widget.ConstraintLayout
|
266
|
+
|
267
|
+
xmlns:android="http://schemas.android.com/apk/res/android"
|
268
|
+
|
269
|
+
xmlns:app="http://schemas.android.com/apk/res-auto"
|
270
|
+
|
271
|
+
xmlns:tools="http://schemas.android.com/tools"
|
272
|
+
|
273
|
+
android:layout_width="match_parent"
|
274
|
+
|
275
|
+
android:layout_height="match_parent"
|
276
|
+
|
277
|
+
android:id="@+id/list"
|
278
|
+
|
279
|
+
tools:context=".ui.home.HomeFragment">
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
<ListView
|
284
|
+
|
285
|
+
android:id="@+id/listView"
|
286
|
+
|
287
|
+
android:layout_width="match_parent"
|
288
|
+
|
289
|
+
android:layout_height="match_parent"
|
290
|
+
|
291
|
+
android:layout_marginStart="8dp"
|
292
|
+
|
293
|
+
android:layout_marginTop="8dp"
|
294
|
+
|
295
|
+
android:layout_marginEnd="8dp"
|
296
|
+
|
297
|
+
>
|
298
|
+
|
299
|
+
</ListView>
|
300
|
+
|
301
|
+
</androidx.constraintlayout.widget.ConstraintLayout>
|
302
|
+
|
303
|
+
```
|
304
|
+
|
305
|
+
|
306
|
+
|
261
307
|
なかなか先に進めておらず、ご教授いただければ幸いです。
|