关于LayoutInflate的用法

1、

LinearLayout ll = (LinearLayout)getLayoutInflater().inflate(R.layout.dialogedit, null);

EditText dialogEdit = (EditText)ll.findViewById(R.id.dialogEdit);

2、

LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);   

 View view = inflater.inflate(R.layout.custom, (ViewGroup)findViewById(R.id.test));   

 EditText editText = (EditText)view.findViewById(R.id.content);  

对于上面代码,指定了第二个参数 ViewGroup root,当然你也可以设置为 null 值。


注意:

·inflate 方法与 findViewById 方法不同;

·inflater 是用来找 res/layout 下的 xml 布局文件,并且实例化;

·findViewById() 是找具体 xml 布局文件中的具体 widget 控件(如:Button、TextView 等)。


 

你可能感兴趣的:(xml,service,layout,null,button)