如何查找CustomDialog的上下文

时间:2014-03-05 11:36:54

标签: android

我有一个自定义对话框

customDialog = new CustomizeDialog(this);
customDialog.setContentView(R.layout.student_register_form);

这是一个像这样声明的弹出窗口

ListViewPopupWindow countryPopupWindow = new
ListViewPopupWindow(this,R.layout.grade_popup_layout, values, Ids, "country");

这是实施

public ListViewPopupWindow(Context ctx,int popup_layout,ArrayList<String> values,
ArrayList<String> ids,String tag){

我的问题是我无法找到上下文

1 个答案:

答案 0 :(得分:0)

// Inflate popupview
    LayoutInflater layoutInflater = (LayoutInflater) getBaseContext().getSystemService(
                LAYOUT_INFLATER_SERVICE); 
       View popupView = layoutInflater.inflate(R.layout.grade_popup_layout,
                null);

使用此popupView作为您的上下文。