回答編集履歴

2

要素の追加について

2019/09/06 06:39

投稿

unhappychoice
unhappychoice

スコア1531

test CHANGED
@@ -16,11 +16,15 @@
16
16
 
17
17
  mPopupWindowList = new ArrayList<PopupWindow>();
18
18
 
19
+ mPopupWindowList.add(new PopupWindow(MainActivity.this));
20
+
21
+ mPopupWindowList.add(new PopupWindow(MainActivity.this)); // 必要個数入れる
22
+
19
23
 
20
24
 
21
25
  //...
22
26
 
23
- for(PopupWindow mPopupWindow: mPopupWindowlist) { // List から取り出し
27
+ for(PopupWindow mPopupWindow: mPopupWindowlist) { // List から取り出して繰り返し
24
28
 
25
29
  // レイアウトの設定
26
30
 

1

修正

2019/09/06 06:39

投稿

unhappychoice
unhappychoice

スコア1531

test CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  //...
22
22
 
23
- for(PopupWindow mPopupWindow: mPopupWindowlist) { // List から
23
+ for(PopupWindow mPopupWindow: mPopupWindowlist) { // List から取り出し
24
24
 
25
25
  // レイアウトの設定
26
26