listView中的自定义alertDialog

时间:2017-12-07 17:40:06

标签: android listview alertdialog

我无法在列表视图中创建自定义Alertdialog。 下面的代码在MainActivity中正常工作,但在customAdapter中,“getLayoutInflater()”为红色:

android.support.v7.app.AlertDialog.Builder cBuilder = new android.support.v7.app.AlertDialog.Builder(context);
                        View mView = getLayoutInflater().inflate(R.layout.custom_dialog_profil, null);



                        cBuilder.setView(mView);
                        android.support.v7.app.AlertDialog dialog = cBuilder.create();
                        dialog.show();

1 个答案:

答案 0 :(得分:1)

您可以将getLayoutInflater更改为LayoutInflater.from(context)而不是