美文网首页
View加载布局文件小常识

View加载布局文件小常识

作者: majorty | 来源:发表于2018-03-27 23:01 被阅读0次
//xml--->view  将设置界面的一个条目转换成view对象,直接添加到了当前SettingItemView对应的view中
View.inflate(context, R.layout.setting_item_view, this);
//等同于以下两行代码
View view = View.inflate(context, R.layout.setting_item_view, null);
this.addView(view);

相关文章

网友评论

      本文标题:View加载布局文件小常识

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