-
Notifications
You must be signed in to change notification settings - Fork 0
/
QPopupWindow.java
64 lines (45 loc) · 1.39 KB
/
QPopupWindow.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.fontlose.relayctrl;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.PopupWindow;
public class QPopupWindow extends PopupWindow{
public QPopupWindow() {
super();
// TODO Auto-generated constructor stub
}
public QPopupWindow(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
// TODO Auto-generated constructor stub
}
public QPopupWindow(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
public QPopupWindow(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
public QPopupWindow(int width, int height) {
super(width, height);
// TODO Auto-generated constructor stub
}
public QPopupWindow(View contentView, int width, int height,
boolean focusable) {
super(contentView, width, height, focusable);
// TODO Auto-generated constructor stub
}
public QPopupWindow(View contentView, int width, int height) {
super(contentView, width, height);
// TODO Auto-generated constructor stub
}
public QPopupWindow(View contentView) {
super(contentView);
// TODO Auto-generated constructor stub
}
@Override
public void showAtLocation(View parent, int gravity, int x, int y) {
// TODO Auto-generated method stub
super.showAtLocation(parent, gravity, x, y);
}
}