質問編集履歴

3

修正

2023/10/12 09:01

投稿

kynsk
kynsk

スコア2

test CHANGED
File without changes
test CHANGED
@@ -14,6 +14,8 @@
14
14
  result = is2String(stream)
15
15
  ネットワーク接続が問題と考えております。
16
16
  どなたかご相談させてください。
17
+ また以下のインポートされたクラスは使われていません
18
+ import java.net.Socket
17
19
  ```
18
20
 
19
21
  ### 該当のソースコード

2

修正

2023/10/12 08:54

投稿

kynsk
kynsk

スコア2

test CHANGED
File without changes
test CHANGED
@@ -200,6 +200,7 @@
200
200
  }
201
201
 
202
202
  }
203
+ ```
203
204
  ```activity_main.xml
204
205
  <?xml version="1.0" encoding="utf-8"?>
205
206
  <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"

1

ソースコード追加

2023/10/12 08:53

投稿

kynsk
kynsk

スコア2

test CHANGED
File without changes
test CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  ### 該当のソースコード
20
20
 
21
- ```Kotlin
21
+ ```MainActivity.kt
22
22
  package com.example.asyncsample
23
23
 
24
24
  import androidx.appcompat.app.AppCompatActivity
@@ -200,7 +200,76 @@
200
200
  }
201
201
 
202
202
  }
203
+ ```activity_main.xml
204
+ <?xml version="1.0" encoding="utf-8"?>
205
+ <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
206
+ xmlns:app="http://schemas.android.com/apk/res-auto"
207
+ xmlns:tools="http://schemas.android.com/tools"
208
+ android:layout_width="match_parent"
209
+ android:layout_height="match_parent"
210
+ tools:context=".MainActivity">
211
+
212
+ <TextView
213
+ android:id="@+id/tvWinfoTitle"
214
+ android:layout_width="wrap_content"
215
+ android:layout_height="wrap_content"
216
+ android:layout_marginStart="8dp"
217
+ android:layout_marginTop="8dp"
218
+ android:layout_marginEnd="8dp"
219
+ android:text="@string/tv_winfo_title"
220
+ android:textSize="24sp"
221
+ app:layout_constraintEnd_toEndOf="parent"
222
+ app:layout_constraintStart_toStartOf="parent"
223
+ app:layout_constraintTop_toTopOf="@+id/glLvCityList" />
224
+
225
+ <androidx.constraintlayout.widget.Guideline
226
+ android:id="@+id/glLvCityList"
227
+ android:layout_width="wrap_content"
228
+ android:layout_height="wrap_content"
229
+ android:orientation="horizontal"
230
+ app:layout_constraintGuide_percent="0.5" />
231
+
232
+ <ListView
233
+ android:id="@+id/lvCityList"
234
+ android:layout_width="0dp"
235
+ android:layout_height="0dp"
236
+ app:layout_constraintBottom_toTopOf="@+id/glLvCityList"
237
+ app:layout_constraintEnd_toEndOf="parent"
238
+ app:layout_constraintStart_toStartOf="parent"
239
+ app:layout_constraintTop_toTopOf="parent" />
240
+
241
+ <TextView
242
+ android:id="@+id/tvWeatherTelop"
243
+ android:layout_width="wrap_content"
244
+ android:layout_height="wrap_content"
245
+ android:layout_marginStart="8dp"
246
+ android:layout_marginTop="8dp"
247
+ android:textSize="20sp"
248
+ app:layout_constraintStart_toStartOf="parent"
249
+ app:layout_constraintTop_toBottomOf="@+id/tvWinfoTitle" />
250
+
251
+ <TextView
252
+ android:id="@+id/tvWeatherDesc"
253
+ android:layout_width="0dp"
254
+ android:layout_height="0dp"
255
+ android:layout_marginStart="8dp"
256
+ android:layout_marginTop="8dp"
257
+ android:layout_marginEnd="8dp"
258
+ android:layout_marginBottom="8dp"
259
+ app:layout_constraintBottom_toBottomOf="parent"
260
+ app:layout_constraintEnd_toEndOf="parent"
261
+ app:layout_constraintStart_toStartOf="parent"
262
+ app:layout_constraintTop_toBottomOf="@+id/tvWeatherTelop" />
263
+
264
+ </androidx.constraintlayout.widget.ConstraintLayout>
203
- ```
265
+ ```
266
+ ```strings.xml
267
+ <resources>
268
+ <string name="app_name">お天気情報</string>
269
+ <string name="tv_winfo_title">お天気詳細</string>
270
+ </resources>
271
+ ```
272
+
204
273
 
205
274
  ### 試したこと
206
275
  デバッグをしながら検証したところ、タップしたリストの値は読み取れている