在Android中获取LayoutInflater对象的方法

时间:2014-05-12 05:25:30   收藏:0   阅读:389

 

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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!