【2013-11-03】Android应用开发笔记:inflate

发布时间:2026/7/10 23:15:49
【2013-11-03】Android应用开发笔记:inflate [历史归档]本文原发布于 cstriker1407.info 个人博客内容为历史存档仅供参考。发布时间2013-11-03 标题Android应用开发笔记inflate分类编程 / android 标签android·inflateAndroid应用开发笔记inflateLayoutInflater的常用获取方式有以下四种// 方式一通过 Context 系统服务LayoutInflaterinflater(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);Viewlayoutinflater.inflate(R.layout.main,null);// 方式二LayoutInflater.from()本质同方式一可参考源码LayoutInflaterinflaterLayoutInflater.from(context);Viewlayoutinflater.inflate(R.layout.main,null);// 方式三Activity 内直接调用 getLayoutInflater()实际是 Window 的方法LayoutInflaterinflatergetLayoutInflater();Viewlayoutinflater.inflate(R.layout.main,null);// 方式四View.inflate 静态方法ViewlayoutView.inflate(this,R.layout.main,null);参考http://my.eoe.cn/addcn/archive/4215.htmlhttp://www.cnblogs.com/loyea/archive/2013/04/27/3047248.html