从零开始理解Android下View(一)----学习笔记(参考郭霖大神博客)
参考链接:郭神博客Android下Activity中加载布局一般是通过setContentView()方法实现的,而setContentView()其实是通过调用LayoutInflater实现的。要研究LayoutInflater原理,首先就要获取它的实例,有两种方法可以拿到LayoutInflater的实例://第一种方法LayoutInflater inflater = LayoutInflater.from(context);//第二种方法LayoutInflater inflater