您的位置:首页 > 移动开发 > Android开发

Layoutinflater用法

2015-11-08 11:27 399 查看
Layoutinflater 是用于载入没有被载入或者动态载入的界面,载入的是 .xml 文件;
实例化:3种方法:

1. LayoutInflater inflater = getLayoutInflater();//调用Activity的getLayoutInflater() 
2. LayoutInflater inflater = LayoutInflater.from(context);  //常用
3. LayoutInflater inflater =  (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);  //常用


用法:

Layoutinflater layoutinflater = Layoutinflater.from(this); // 实例化
View view = layoutinflater.inflater(R.layout.view,null);  //载入界面


源代码:

inflate(int resource, ViewGroup root)  // 返回值View

//Inflate a new view hierarchy from the specified xml resource.

区分:inflater 与 FindViewById
1. inflater 是用于载入没用被载入或者需动态载入的界面, 查到res/layout/目录下;

2.FindViewById 是用于找到已载入的 widget 控件;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息