I get the lint warning, Avoid passing null as the view root when inflating views with null as parent, like:
Avoid passing null as the view root
null
parent
LayoutInfl
Use this code to inflate the dialog view without a warning:
View.inflate(context, R.layout.dialog_edit, null);