Avoid passing null as the view root (need to resolve layout parameters on the inflated layout's root element)

前端 未结 7 729
旧时难觅i
旧时难觅i 2020-11-27 10:13

Passing null for root studio gives me this warning:

Avoid passing null as the view root (need to resolve layout parameters on the inflated layout\'s r

7条回答
  •  忘掉有多难
    2020-11-27 10:40

    For AlertDialog bellow code can be used

    convertView = layoutInflater.inflate(R.layout.list_item, findViewById(android.R.id.content), false);
    

提交回复
热议问题