1. 程式人生 > >layoutInflater的用途以及獲取VIEW方法

layoutInflater的用途以及獲取VIEW方法

tin you login inf 不用 etl 實用 layout ()

如果需要用到自定義多個布局,就需要用到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方法