使用LayoutInflater的理解

2021-07-11 22:48:03 字數 1414 閱讀 3625

今天封裝xml布局到view的時候遇到了內容直接變成包裹內容,顯示與寫的布局不符合的情況,檢查後發現是layoutinflater使用錯誤的問題,因此這裡今天就記錄一下layoutinflater的部分理解。

layoutinflater是用來找res/layout/下的xml布局檔案,並且例項化;類似findviewbyid()是找xml布局檔案下的具體widget控制項(如button、textview等),並且例項化。

獲得 layoutinflater 例項的三種方式

1.layoutinflater inflater = getlayoutinflater(); //呼叫activity的getlayoutinflater()

2.layoutinflater localinflater =(layoutinflater)context.getsystemservice (context.layout_inflater_service);

3.layoutinflater inflater = layoutinflater.from(context);

研究原始碼可以看到 getlayoutinflater() 中呼叫了 layoutinflater.from(context), 而layoutinflater.from(context) 中又呼叫了(layoutinflater)context.getsystemservice 所以可以知道,三種呼叫方式本質是沒有區別的。

造成我的布局問題的就是下邊layoutinflater的inflate方法,

1、inflate(int resource, viewgroup root) 2、inflate(int resource, viewgroup root, boolean attachtoroot) 常用的這兩種呼叫方式,root如果傳遞的是null引入的resource布局中設定的長寬等屬性都會變成預設包裹內容(wrap_content),所以有設定布局別的屬性的話在root的地方傳遞乙個viewgroup。

inflater.inflate(r.layout.item_list, null); —-> 顯示布局變成預設包裹內容

inflater.inflate(r.layout.item_list, parent,false);—–> 正常顯示布局

借鑑別人的理解:

1. 如果root為null,attachtoroot將失去作用,設定任何值都沒有意義。

2. 如果root不為null,attachtoroot設為true,則會給載入的布局檔案的指定乙個父布局,即root。

3. 如果root不為null,attachtoroot設為false,則會將布局檔案最外層的所有layout屬性進行設定,當該view被新增到父view當中時,這些layout屬性會自動生效。

4. 在不設定attachtoroot引數的情況下,如果root不為null,attachtoroot引數預設為true。

使用GraphEdit使用

1 註冊元件。其實乙個filter就是乙個com元件,所以使用之前需要註冊,可以有兩種方法對元件進行註冊。1.直接使用命令。命令列下輸入 regsvr32 hqtlystd.ax 編譯之後你會在工程目錄下的debug中找到hqtlystd.ax,這個就是要用的filter 即可註冊成功。2.vc6....

MySQL使用學習使用 mysql學習使用

1 mysql學習 1 安裝 ubuntu下直接安裝 apt get install mysql server 2 檢查伺服器是否啟動 sudo netstat tap grep mysql,如果啟動成功,出現以下資訊 tcp00localhost.localdomain mysql listen ...

學習使用CSDN markdown使用

建立乙個自定義列表 如何建立乙個註腳 注釋也是必不可少的 katex數學公式 新的甘特圖功能,豐富你的文章 uml 圖表 flowchart流程圖 匯出與匯入 你好!這是你第一次使用markdown編輯器所展示的歡迎頁。如果你想學習如何使用markdown編輯器,可以仔細閱讀這篇文章,了解一下mar...