我无法在列表视图中创建自定义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();
答案 0 :(得分:1)
您可以将getLayoutInflater
更改为LayoutInflater.from(context)
而不是