(一)LayoutInflater原理分析 LayoutInflater主要用于加载布局.通常情况下,加载布局的任务都是在Activity中调用setContentView()方法来完成的,该方法内部使用LayoutInflater来加载布局. 想要使用LayoutInflater,首先需要获取到LayoutInflater的实例,有两种方法可以获取到: LayoutInflater layoutInflater = LayoutInflater.from(context); LayoutInf…