標籤:
LayoutInflater的inflate方法,在fragment的onCreateView方法中經常用到:
[java] view plaincopy
- public View onCreateView(LayoutInflater inflater, ViewGroup container,
- Bundle savedInstanceState) {
LayoutInflater的inflate方法一共有四種,但我們日常用經常用到的就只有這兩種:
[java] view plaincopy
- public View inflate(int resource, ViewGroup root) {
- return inflate(resource, root, root != null);
- }
[java] view plaincopy
- public View inflate(int resource, ViewGroup root, boolean attachToRoot) {
- if (DEBUG) System.out.println("INFLATING from resource: " + resource);
- XmlResourceParser parser = getContext().getResources().getLayout(resource);
- try {
- return inflate(parser, root, attachToRoot);
- } finally {
- parser.close();
- }
- }
所以,這裡直接介紹裡面調用這個方法即可:
[java] view plaincopy
- public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot)
在這個方法裡面,上半部分為xml解析的代碼,這裡就不貼出來,確實沒什麼東西可看。直接看中間部分的代碼:
[java] view plaincopy
- ViewGroup.LayoutParams params = null;
-
- if (root != null) {
- if (DEBUG) {
- System.out.println("Creating params from root: " +
- root);
- }
- // Create layout params that match root, if supplied
- params = root.generateLayoutParams(attrs);
- if (!attachToRoot) {
- // Set the layout params for temp if we are not
- // attaching. (If we are, we use addView, below)
- temp.setLayoutParams(params);
- }
- }
params = root.generateLayoutParams(attrs);
這段的意思是:如果調用inflate方法,傳入了ViewGroup root參數,則會從root中得到由layout_width和layout_height組成的LayoutParams,在attachToRoot設定為false的話,就會對我們載入的視圖View設定該LayoutParams。
接著往下看:
[java] view plaincopy
- // We are supposed to attach all the views we found (int temp)
- // to root. Do that now.
- if (root != null && attachToRoot) {
- root.addView(temp, params);
- }
-
- // Decide whether to return the root that was passed in or the
- // top view found in xml.
- if (root == null || !attachToRoot) {
- result = temp;
- }
root.addView(temp, params);
如果設定了ViewGroup root參數,且attachToRoot設定為true的話,則將我們載入的視圖做為子視圖添加到root視圖中。
如果我們ViewGroup root設定為空白的話,就直接返回我們建立的視圖;如果root不為空白,且attachToRoot設定為false的話,就返回上面那段:對我們載入的視圖View設定該LayoutParams。
以上就是該方法內容,可能你還有點看不太懂吧,下一篇文章,我將會做幾個例子,來具體說明一下。
如果你不關心其內部實現,只看如何使用的話,直接看這篇即可。
接上篇,接下來,就用最最簡單的例子來說明一下:
用兩個布局檔案main 和 test:
其中,main.xml檔案為:
[html] view plaincopy
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:gravity="center"
- android:text="hello world" />
-
- </LinearLayout>
test.xml檔案為:
[html] view plaincopy
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="200dp"
- android:background="#ffffff00"
- android:orientation="vertical" >
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:gravity="center"
- android:text="test" />
-
- </LinearLayout>
在test中設定了其高度為200dp,並且設定了背景顏色。
接下來看一下LayoutInflater().inflate方法實現:
第一種方式:inflate(view, null)
[java] view plaincopy
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- View view = (LinearLayout) getLayoutInflater().inflate(R.layout.main,
- null);
-
- view = getLayoutInflater().inflate(R.layout.test, null);
-
- setContentView(view);
- }
啟動並執行效果如下:
這個就很容易理解了,因為我沒有指定ViewGroup root參數,所以,相當於直接載入了test視圖檔案,並返回。
而它的高度充滿了全屏而不是200dp,因為執行inflate的時候,沒有root參數,則無法為test視圖設定layoutparam參數。那麼為什麼會充滿螢幕而不是沒有顯示呢?是因為我們將其設定視圖到activity時,會取得當前window的layoutparam賦值給它,也就是充滿全屏。有興趣的話,你可以改一下test的layout_width設定一個數值,最後運行效果是一樣的。
第二種方式:inflate(view, root, false)
[html] view plaincopy
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- View view = (LinearLayout) getLayoutInflater().inflate(R.layout.main,
- null);
-
- view = getLayoutInflater().inflate(R.layout.test, (ViewGroup) view, false);
-
- setContentView(view);
- }
這裡調用inflate的時候,強轉了view為viewgroup,因為其本身就是linearlayout,所以這裡可以強轉。
啟動並執行效果如下:
單看效果而言,跟上面的一樣。但從代碼本身而言,實現的內容就不一樣了。由於有了viewgroup,這裡得到的視圖其實已經有了layoutparam,你可以自行列印Log看看。
但為什麼最後的結果卻是和上面的一樣呢。原因還是由於設定視圖到activity時,會取得當前window的layoutparam賦值給它,也就是充滿全屏。
第三種方式:inflate(view, root, true)
[html] view plaincopy
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- View view = (LinearLayout) getLayoutInflater().inflate(R.layout.main,
- null);
-
- view = getLayoutInflater().inflate(R.layout.test, (ViewGroup) view,
- true);
-
- setContentView(view);
- }
啟動並執行效果如下:
這個效果就很明顯了,由於main是線性布局,所以,test視圖被添加到了textview(hello world)下面,並且保留了其自己的layoutparam參數。
例子很簡單,就不附上代碼工程。
如果對inflate方法如何?的,感興趣的話,可以參考上一篇文章:
Android編程之LayoutInflater的inflate方法詳解
補充:新的API會在inflater.inflate(R.layout.xxx, null);提示錯誤:
請詳見看後面的轉載的文章解釋:
Layout inflation is the term used within the context of Android to indicate when an XML layout resource is parsed and converted into a hierarchy of View objects.
Android編程之LayoutInflater的inflate方法詳解