这是一个简单的方法:
private void setupUI(Context context) {
View view = LayoutInflater.from(context).inflate(R.layout.layout_section_view, this);
header = (TextView) view.findViewById(R.id.layout_section_header);
listView = (ListView) view.findViewById(R.id.layout_section_listview);
}
Lint 建议检查view
是否null
。你们经常检查这样的条件吗?如果真的是null
因为有人删除了布局xml,你可以检查它并抛出NullPointerException
,但无论如何它都会被抛出......那有什么意义呢?