码迷,mamicode.com
首页 > 其他好文 > 详细

LayoutInflate: Avoid passing null as the view root

时间:2020-01-08 14:33:47      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:res   lan   href   解决   ESS   tar   com   class   code   

今天使用LayoutInflate.inflate()方法加载一个布局,当参数root 为null 时,出现下列提示

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

解决方案:

1. 添加:

@SuppressLint("InflateParams")

2. 修改成

view = View.inflate(context,R.layout.custom_layout,null);

改用View的inflate方法root为null就不会出现warning提示。

参考链接:
1. Avoid passing null as the view root (need to resolve layout parameters on the inflated layout‘s root element)

 

LayoutInflate: Avoid passing null as the view root

标签:res   lan   href   解决   ESS   tar   com   class   code   

原文地址:https://www.cnblogs.com/yongdaimi/p/12166138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!