MenuInflater是用来加载menu布局文件的。
与LayoutInflater类似,应用程序运行时会预先加载资源中的布局文件,如果Menu布局中的资源比较多,会影响性能,所以可以选择MenuInflater方式用的时候加载,这样减轻了应用程序运行时很多负担
与LayoutInflater相比,MenuInflater用法要简单很多,它只有Activity.getMenuInflater()方法和MenuInflater(Context context)方法。
然后调用MenuInflater的方法inflate(int menuRes, Menu menu)方法加载布局。