三种方式得到LayoutInflater

LayoutInflaterinflater=LayoutInflater.from(this);
  
LayoutInflaterinflater=getLayoutInflater();
  
LayoutInflaterinflater=(LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);

原文地址:https://www.cnblogs.com/RobotWorlds-li/p/5363776.html