“Avoid passing null as the view root” warning when inflating view for use by AlertDialog

前端 未结 10 723
面向向阳花
面向向阳花 2020-12-12 15:41

I get the lint warning, Avoid passing null as the view root when inflating views with null as parent, like:

LayoutInfl         


        
10条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-12 16:37

    Use this code to inflate the dialog view without a warning:

    View.inflate(context, R.layout.dialog_edit, null);
    

提交回复
热议问题