質問編集履歴
1
コードの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,6 +46,74 @@
|
|
46
46
|
|
47
47
|
|
48
48
|
|
49
|
+
// レイアウト設定
|
50
|
+
|
51
|
+
View popupView = getLayoutInflater().inflate(R.layout.popup_layout, null);
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
popupView.findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
|
58
|
+
|
59
|
+
@Override
|
60
|
+
|
61
|
+
public void onClick(View v) {
|
62
|
+
|
63
|
+
if (mPopupWindow.isShowing()) {
|
64
|
+
|
65
|
+
mPopupWindow.dismiss();
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
}
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
});
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
mPopupWindow.setContentView(popupView);
|
78
|
+
|
79
|
+
// 背景設定
|
80
|
+
|
81
|
+
mPopupWindow.setBackgroundDrawable(getResources().getDrawable(R.drawable.popup_background));
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
// タップ時に他のViewでキャッチされないための設定
|
86
|
+
|
87
|
+
mPopupWindow.setOutsideTouchable(true);
|
88
|
+
|
89
|
+
mPopupWindow.setFocusable(true);
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
// 表示サイズの設定 今回は幅300dp
|
100
|
+
|
101
|
+
float width = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 300, getResources().getDisplayMetrics());
|
102
|
+
|
103
|
+
mPopupWindow.setWindowLayoutMode((int) width, WindowManager.LayoutParams.WRAP_CONTENT);
|
104
|
+
|
105
|
+
mPopupWindow.setWidth((int) width);
|
106
|
+
|
107
|
+
mPopupWindow.setHeight(WindowManager.LayoutParams.WRAP_CONTENT);
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
// 画面中央に表示
|
112
|
+
|
113
|
+
mPopupWindow.showAtLocation(findViewById(R.id.show_button), Gravity.CENTER, 0, 0);
|
114
|
+
|
115
|
+
|
116
|
+
|
49
117
|
```
|
50
118
|
|
51
119
|
こような形で,インスタンスを生成しているのですが,これだと1個しか生成できないです.
|