View加载布局文件小常识
2018-03-27 本文已影响0人
majorty
//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);