首页 > 代码库 > inflate方法与findViewById的区别
inflate方法与findViewById的区别
LayoutInflater作用是将layout的xml布局文件实例化为View类对象。
对于一个没有被载入或者想要动态载入的界面,都需要使用LayoutInflater.inflate()来找 res/layout下的 xml 布局文件,并且实例化为View类对象;
获取LayoutInflater的方法有如下三种:
LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);View layout = inflater.inflate(R.layout.main, null); LayoutInflater inflater = LayoutInflater.from(context); //该方法实质就是第一种方法View layout = inflater.inflate(R.layout.main, null); LayoutInflater inflater = getLayoutInflater();//在Activity中可以使用,实际上是View子类下window的一个函数View layout = inflater.inflate(R.layout.main, null);
·findViewById() 是找具体 xml 布局文件中的具体 widget 控件(如:Button、TextView 等)。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。