inflateandroid
發布時間: 2025-01-13 19:47:43
❶ android中的「inflate」是什麼意思
inflate的作用就是將一個用xml定義的布局文件查找出來,注意與findViewById()的區別,inflate是載入一個布局文件,而findViewById則是從布局文件中查找一個控制項。
1、獲取LayoutInflater對象有三種方法
LayoutInflater inflater=LayoutInflater.from(this);
LayoutInflater inflater=getLayoutInflater();
LayoutInflater inflater=(LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);
2、關於LayoutInflater類inflate(int resource, ViewGroup root, boolean attachToRoot)
熱點內容