标签:android
Inflate() method can find out a layout defined by xml,as like the findViewById() method,but there have some different between them.
The different are:
If your Activity used other layout,such as the dialog layout,and you want to set the component‘s content in that layout.you must use the inflate() method to find it out,then use the findViewById() method to find other components above it.such as:
View view1=View.inflate(this,R.layout.dialog_layout,null); TextViewdialogTV=(TextView)view1.findViewById(R.id.dialog_tv); dialogTV.setText("abcd");
View viewStub = ((ViewStub) findViewById(R.id.stubView)).inflate();
after inflate(),it must have size,but hide.
if you also interest in linux and android embed system,please connection with us in QQ grounp:139761394
The method Inflate() in android,布布扣,bubuko.com
The method Inflate() in android
标签:android
原文地址:http://blog.csdn.net/xiebaochun/article/details/32935895