码迷,mamicode.com
首页 > 移动开发 > 详细

在Android中获取LayoutInflater对象的方法

时间:2014-05-12 05:25:30      阅读:389      评论:0      收藏:0      [点我收藏+]

标签:android   ext   c   int   get   文件   

 

1、通过系统服务来获得,这是最标准的:

LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

2、通过LayoutInflater的静态方法获得:

LayoutInflater inflater = LayoutInflater.from(context);

3、如果在Activity中,可以直接使用Activity中的getLayoutInflater()方法获得:

LayoutInflater inflater = getLayoutInflater();


----------------------------------------------------------------------------------

关于inflater()方法

1 View view = inflater.inflate(int resource, ViewGroup root);
1) resource是要加载的xml资源文件Layout
2) 指定这个加载Layout的父元素,如果没有直接为NULL

在Android中获取LayoutInflater对象的方法,布布扣,bubuko.com

在Android中获取LayoutInflater对象的方法

标签:android   ext   c   int   get   文件   

原文地址:http://www.cnblogs.com/SunnyRainPlant/p/3721100.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!