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
Casting null as ViewGroup resolved the warning:
View dialogView = li.inflate(R.layout.input_layout,(ViewGroup)null);
where li is the LayoutInflater's object.
li
LayoutInflater's