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);
}
}