美文网首页
Android:inflate()方法

Android:inflate()方法

作者: 阿饼太太 | 来源:发表于2016-07-25 17:13 被阅读0次

item多数用LayoutInflater.from(context).inflate传入布局

Viewview = LayoutInflater.from(context).inflate(R.layout.item_list,null);

该方法传入第二个参数null则控件view的自定义属性无效,如高度、居中等


Viewview = LayoutInflater.from(context).inflate(R.layout.item_list,parent,false);

该方法传入parent跟false之后自定义属性生效

相关文章

网友评论

      本文标题:Android:inflate()方法

      本文链接:https://www.haomeiwen.com/subject/fisejttx.html