layoutInflater的用途以及获取VIEW方法

Posted 高速转弯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layoutInflater的用途以及获取VIEW方法相关的知识,希望对你有一定的参考价值。

 

如果需要用到自定义多个布局,就需要用到layoutInflater,获取layoutInflater一般有几种方式,但我在实际使用中,感觉如下的getLayoutInflater()是最为方便的,不用带参数,错误率低。在获取LayoutInflater,再通过layoutInflater.inflate(R.layout.XXXX,NULL)函数可以直接获取相关的view,非常实用。

LayoutInflater layoutInflater = getLayoutInflater();//获得layoutInflater对象
View view = layoutInflater.inflate(R.layout.login, null);//获得view对象

以上是关于layoutInflater的用途以及获取VIEW方法的主要内容,如果未能解决你的问题,请参考以下文章

View 自定义属性之 LayoutInflater

LayoutInflater

Android LayoutInflater源码解读

Android LayoutInflater源码解读

[Android] 转-LayoutInflater丢失View的LayoutParams

Android LayoutInflater原理分析,带你一步步深入了解View