关于 LayoutInflater.inflate()的参数问题

LayoutInflater inflate(int resource, ViewGroup root, boolean attachToRoot)三个参数 的意义分别如下:
@param resource 布局文件的资源Id;
@param root 1.当attachToRoot为true时,该方法返回的view对象会自动被添加到root中作为root的一个子控件;
2.当attachToRoot为false时,该方法返回的view只会获得root的布局属性
如果root为null,则第三个参数无效,且生产的view的getLayoutParams()会返回空,也就是 view不会有布局属性。
@param attachToRoot 是否将生成的view添加到root中:如果是false,则root只用来获取正确的LayoutParams子类然后并应用到view上。如果是true的话,则将生成的view添加到root中。
@return 生成的view

在自定义组合控件的时候,我们往往要把一个布局文件加载到我们自定义的一个ViewGroup上,那么以下几种写法都可以:

public abstract class BaseLinearLayout extends LinearLayout {

    protected LayoutInflater mLayoutInflater;
    protected View mMainView;

    public BaseLinearLayout(Context context, AttributeSet attrs) {   
     mLayoutInflater = LayoutInflater.from(getContext());
     mMainView = mLayoutInflater.inflate(R.layout.baselinearlayout, null);
     LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT,    
                                            LayoutParams.WRAP_CONTENT);
     addView(mMainView, params);
   //上述写法等价于:
   //mLayoutInflater.inflate(R.layout.baselinearlayout,this);
   //或者:mLayoutInflater.inflate(R.layout.baselinearlayout,this,true);

   //上述写法也等价于: 
   //mMainView = mLayoutInflater.inflate(R.layout.baselinearlayout, this,false);
   //addView(mMainView);                
  }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值