質問編集履歴
1
改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -7,7 +7,11 @@
|
|
7
7
|
複数のチェックボックスの状態を取得して、1つでもチェックがついていなかったら”忘れ物があります”のToastを出したいです。
|
8
8
|
|
9
9
|
### 発生している問題・エラーメッセージ
|
10
|
+
|
11
|
+
現在表示されているチェックボックスすべての値を取得したいのですが、1つ目のものしか取得できません。
|
12
|
+
### 該当のソースコード
|
13
|
+
|
10
|
-
|
14
|
+
```MainActivity.java
|
11
15
|
package com.example.check3;
|
12
16
|
|
13
17
|
import androidx.annotation.NonNull;
|
@@ -135,10 +139,9 @@
|
|
135
139
|
}
|
136
140
|
}
|
137
141
|
}
|
138
|
-
|
142
|
+
```
|
143
|
+
|
139
|
-
|
144
|
+
```activity_main.xml
|
140
|
-
![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2023-01-16/5f48bb8c-d436-4514-8fed-a124bac10663.png)
|
141
|
-
|
142
145
|
<?xml version="1.0" encoding="utf-8"?>
|
143
146
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
144
147
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
@@ -158,14 +161,13 @@
|
|
158
161
|
app:layout_constraintStart_toStartOf="parent"
|
159
162
|
app:layout_constraintTop_toTopOf="parent" />
|
160
163
|
|
161
|
-
<
|
164
|
+
<Button
|
162
165
|
android:id="@+id/add"
|
163
166
|
android:layout_width="80dp"
|
164
167
|
android:layout_height="80dp"
|
165
168
|
android:layout_marginBottom="10dp"
|
166
|
-
android:background="@null"
|
167
|
-
android:src="@drawable/lemonplus"
|
168
169
|
android:scaleType="fitCenter"
|
170
|
+
android:text="+ついか"
|
169
171
|
app:layout_constraintBottom_toBottomOf="parent"
|
170
172
|
app:layout_constraintEnd_toEndOf="parent"
|
171
173
|
app:layout_constraintStart_toStartOf="parent" />
|
@@ -183,33 +185,9 @@
|
|
183
185
|
app:layout_constraintVertical_bias="0.834"></Button>
|
184
186
|
|
185
187
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
186
|
-
|
187
|
-
|
188
|
+
```
|
188
|
-
|
189
|
+
|
189
|
-
<?xml version="1.0" encoding="utf-8"?>
|
190
|
-
<RelativeLayout
|
191
|
-
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
192
|
-
android:layout_height="match_parent">
|
193
|
-
|
194
|
-
<RelativeLayout
|
195
|
-
android:layout_width="match_parent"
|
196
|
-
android:layout_height="wrap_content"
|
197
|
-
android:padding="10dp">
|
198
|
-
|
199
|
-
<EditText
|
200
|
-
android:id="@+id/nameEdit"
|
201
|
-
android:layout_width="match_parent"
|
202
|
-
android:layout_height="wrap_content"
|
203
|
-
android:hint="✏ ここににゅうりょく"
|
204
|
-
android:textSize="20dp"/>
|
205
|
-
|
206
|
-
</RelativeLayout>
|
207
|
-
|
208
|
-
</RelativeLayout>
|
209
|
-
|
210
|
-
|
190
|
+
```card.xml
|
211
|
-
|
212
|
-
![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2023-01-16/42baa416-1569-432a-9c4d-17d8bf68b2b9.png)
|
213
191
|
<?xml version="1.0" encoding="utf-8"?>
|
214
192
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
215
193
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
@@ -246,12 +224,32 @@
|
|
246
224
|
</RelativeLayout>
|
247
225
|
|
248
226
|
</androidx.cardview.widget.CardView>
|
249
|
-
|
250
|
-
### 該当のソースコード
|
251
|
-
|
252
|
-
```ここに言語名を入力
|
253
|
-
ソースコード
|
254
|
-
```
|
227
|
+
```
|
228
|
+
|
229
|
+
```dialog.xml
|
230
|
+
<?xml version="1.0" encoding="utf-8"?>
|
231
|
+
<RelativeLayout
|
232
|
+
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
233
|
+
android:layout_height="match_parent">
|
234
|
+
|
235
|
+
<RelativeLayout
|
236
|
+
android:layout_width="match_parent"
|
237
|
+
android:layout_height="wrap_content"
|
238
|
+
android:padding="10dp">
|
239
|
+
|
240
|
+
<EditText
|
241
|
+
android:id="@+id/nameEdit"
|
242
|
+
android:layout_width="match_parent"
|
243
|
+
android:layout_height="wrap_content"
|
244
|
+
android:hint="✏ ここににゅうりょく"
|
245
|
+
android:textSize="20dp"/>
|
246
|
+
|
247
|
+
</RelativeLayout>
|
248
|
+
|
249
|
+
</RelativeLayout>
|
250
|
+
```
|
251
|
+
|
252
|
+
|
255
253
|
|
256
254
|
### 試したこと
|
257
255
|
|