目前分類:android - LayoutInflater 和 inflater (3)
- Mar 27 Thu 2014 08:58
LayoutInflater | Android Developer
- Jan 23 Thu 2014 17:23
關於LayoutInflater類別
- Jan 23 Thu 2014 17:21
LayoutInflater作用及使用
http://blog.sina.com.cn/s/blog_629b701e0100rg4d.html
作用: 1、對於一個沒有被載入或者想要動態載入的界面,都需要使用inflate來載入. 2、對於一個已經載入的Activity,就可以使用實現了這個Activiyt的的findViewById方法來獲得其中的界面元素. 方法: Android裡面想要創建一個畫面的時候,初學一般都是新建一個類,繼承Activity基類,然後在onCreate裡面使用setContentView方法來載入一個在xml裡定義好的界面. 其實在Activity裡面就使用了LayoutInflater來載入界面,通過getSystemService(Context.LAYOUT_INFLATER_SERVICE)方法可以獲得一個LayoutInflater,也可以通過LayoutInflater inflater = getLayoutInflater();來獲得.然後使用inflate方法來載入layout的xml,