我用以下构造函数编写了一个类
public CustomDialog(Context context)
但是当我尝试在我的活动中这样做时
CustomDialog diag = new CustomDialog(getApplicationContext()){/*stuff here*/};
我得到错误The constructor CustomDialog(Context) refers to the missing type Context
这是什么意思?我该如何解决?