引用:http://blog.chinaunix.net/uid-27024249-id-3304935.html
Android之Inflate()方法用途
Inflate()作用就是将xml定义的一个布局找出来并隐藏起来,并没有显示出来。
android上还有一个与Inflate()类似功能的方法叫findViewById(),二者有时均可使用,但也有区别,
区别在于:
如果你的Activity里用到别的layout,比如对话框layout并且你还要设置这个layout上的其他组件的内容,你就必须用inflate()方法先将对话框的layout找出来,然后再用findViewById()找到它上面的其它组件。例如:
View view1=View.inflate(this,R.layout.dialog_layout,null);TextView dialogTV=(TextView)view1.findViewById(R.id.dialog_tv);
dialogTV.setText("abcd");
注:R.id.dialog_tv是在对话框layout上的组件,而这时若直接用this.findViewById(R.id.dialog_tv)肯定会报错。所以,Inflate()或可理解为“隐性膨胀”,隐性摆放在view里,在inflate()之前只是获得控件,但没有大小也没有在View里占据空间;在inflate()之后有了一定大小,但是处于隐藏状态。
setContentView和inflate区别
一般用LayoutInflater做一件事:inflateinflate这个方法总共有四种形式(见下),目的都是把xml表述的layout转化为View对象。其中有一个比较常用,View inflate(int resource, ViewGroup root),另三个和这个差不多。int resource,也就是resource/layout文件在R文件中对应的ID,这个必须指定。ViewGroup root,可以是null:null时就只创建一个resource对应的View;不是null时:会将创建的view自动加为root的child。
setContentView和inflate区别:
setContentView()一旦调用, layout就会立刻显示UI;而inflate只会把Layout形成一个以view类实现成的对象,有需要时再用setContentView(view)显示出来。一般在activity中通过setContentView()将界面显示出来,但是如果需要在非activity中对控件布局进行设置,这就需LayoutInflater来进行动态加载了。
点击(此处)折叠或打开
- < TextView
- android:id="@+id/tview"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="ATAAW.COM"
- />
- < Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:id="@+id/button"
- android:text="按钮"
- />
点击(此处)折叠或打开
- LayoutInflater flater = LayoutInflater.from(this);
- View view = flater.inflate(R.layout.example, null);
点击(此处)折叠或打开
- button = (Button) view.findViewById(R.id.button);
- textView = (TextView)view.findViewById(R.id.tview);
This class is used to instantiate layout xml files into its corresponding view object. It is never be used directly——use getLayoutInflater() or getSystemService(String)getLayoutInflate() or getSystemService(String) to retrieve a standard LayoutInflater instance that is already hooked up that is already hook up to the current context and correct configured for the device you are running on.
1. Context.public abstract object getSystemService(String name) 2. 两种获得LayoutInflater的方法 a. 通过SystemService获得 LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLEATER_SERVICE); b. 从给定的context中获取 Public static LayoutInflater from(Context context) c. 两者的区别:实际上是一样的,举例如下:点击(此处)折叠或打开
- public static LayoutInflater from(Context context) {
- LayoutInflater LayoutInflater =
- (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
- if (LayoutInflater == null) {
- throw new AssertionError("LayoutInflater not found.");
- }
- return LayoutInflater;
- }