Android成长之路-LayoutInflater和inflate的用法

时间:2023-02-01 08:38:15

 

在这里用Tabhost的例子来说明:

[java] view plain copy
  1. package cn.csdn.activity;  
  2.   
  3. import android.app.TabActivity;  
  4. import android.os.Bundle;  
  5. import android.view.LayoutInflater;  
  6. import android.widget.TabHost;  
  7.   
  8. public class TabHostActivity extends TabActivity {  
  9.   
  10.     @Override  
  11.     protected void onCreate(Bundle savedInstanceState) {  
  12.   
  13.         super.onCreate(savedInstanceState);  
  14.         TabHost tabhost = this.getTabHost();  
  15.   
  16.         /** 
  17.          * LayoutInflater这个类的作用类似于findViewById(), 
  18.          * 不同点: 
  19.          *     LayoutInflater是用来找layout下xml布局文件的,而且它会实例化 
  20.          *     findViewById()是找具体xml布局文件下的具体widget控件,比如:Button按钮 
  21.          *  
  22.          *  
  23.          *  
  24.          * inflate就相当于将一个xml中定义的布局找出来.     
  25.          * 因为如果在一个Activity文件里直接用findViewById()这个方法的话, 
  26.          * 那么它所对应的是setConentView()中调用的那个layout里的组件.    
  27.          * 因此如果在同样的Activity里用到别的layout的话, 
  28.          *     而且你还要设置这个layout里的组件(比如:ImageView,TextView)上的内容, 
  29.          *     那么你就必须用inflate()先将这个layout找出来, 然后再用这个layout对象去找到它上面的组件 
  30.          *     然后进行一系列的操作 
  31.          *      
  32.          *     inflate()方法中参数: 
  33.          *       1.想要用的布局文件的id 
  34.          *       2.持有选项卡的内容,获取FrameLayout 
  35.          *       3.true:将此处解析的xml文件做为根视图View 
  36.          */  
  37.         LayoutInflater.from(this).inflate(R.layout.tabhost_layout,  
  38.                 tabhost.getTabContentView(), true);  
  39.   
  40.           
  41.         /**在这里添加的时候: 
  42.          *       1.必须指定 tab 的内容,必须为 id, 即:setContent(R.id.text) 
  43.          *       2.必须设置tab 上的文字或图片  , 即:setIndicator("已接电话") 
  44.          *       3.返回一个 TabHost.TabSpec 对象,其参数用于标识一个 tab 的 tag,即:newTabSpec("tab1") 
  45.         */  
  46.         tabhost.addTab(tabhost.newTabSpec("tab1").setIndicator("已接电话")  
  47.                 .setContent(R.id.text));  
  48.           
  49.         tabhost.addTab(tabhost.newTabSpec("tab2").setIndicator("呼出电话",  
  50.                 getResources().getDrawable(R.drawable.ic_launcher))  
  51.                 .setContent(R.id.text));  
  52.           
  53.         tabhost.addTab(tabhost.newTabSpec("tab3").setIndicator("未接电话")  
  54.                 .setContent(R.id.text));  
  55.     }  
  56. }