ViewGroup 的 addview 我们都很熟悉了,但在通过 inflate
将子布局转成view 时,却碰到 match_parent
和 设置的固定宽高都无效的情况:
item_view.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="100dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="HelloWorld"/>
</LinearLayout>
addview
View view = LayoutInflater.from(this).inflate(R.layout.item_view, null);
mLayout.addview(view);
如上面的代码示例,结果item_view 的 高度并不是100dp,宽也并没有铺满,明明已经设置了值,怎么没有效果,其实忽略了 inflate
inflate
布局加载器,一般在setContentView完成,在动态加载布局的时候也是用的它。
inflate 的两个调用方法
- 使用View中的静态方法View.inflate()
public static View inflate(Context context, @LayoutRes int resource, ViewGroup root)
- 使用LayoutInflater中的inflate()方法,在LayoutInflater类中有几个重载方法
public View inflate(@LayoutRes int resource, @Nullable ViewGroup root)
public View inflate(XmlPullParser parser, @Nullable ViewGroup root)
public View inflate(@LayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot)
public View inflate(XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot)
其实,如果查看过这几个方法的调用过程我们就会发现这几个方法不管调用的是哪一个,最终调用的都是 inflate(XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot)
这个方法
源码分析
public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) {
synchronized (mConstructorArgs) {
final AttributeSet attrs = Xml.asAttributeSet(parser);
mConstructorArgs[0] = mContext;
View result = root;
try {
int type;
while ((type = parser.next()) != XmlPullParser.START_TAG &&
type != XmlPullParser.END_DOCUMENT) {
}
if (type != XmlPullParser.START_TAG) {
throw new InflateException(parser.getPositionDescription()
+ ": No start tag found!");
}
final String name = parser.getName();
if (TAG_MERGE.equals(name)) {
if (root == null || !attachToRoot) {
throw new InflateException("merge can be used only with a valid "
+ "ViewGroup root and attachToRoot=true");
}
rInflate(parser, root, attrs);
} else {
View temp = createViewFromTag(name, attrs);
ViewGroup.LayoutParams params = null;
if (root != null) {
params = root.generateLayoutParams(attrs);
if (!attachToRoot) {
temp.setLayoutParams(params);
}
}
rInflate(parser, temp, attrs);
if (root != null && attachToRoot) {
root.addView(temp, params);
}
if (root == null || !attachToRoot) {
result = temp;
}
}
} catch (XmlPullParserException e) {
InflateException ex = new InflateException(e.getMessage());
ex.initCause(e);
throw ex;
} catch (IOException e) {
InflateException ex = new InflateException(
parser.getPositionDescription()
+ ": " + e.getMessage());
ex.initCause(e);
throw ex;
}
return result;
}
}
可以看出,LayoutInflater其实就是使用Android提供的pull解析方式来解析布局文件的。这里注意下 createViewFromTag()
这个方法,并把节点名和参数传了进去。看到这个方法名,我们就应该能猜到,它是用于根据节点名来创建View对象的。确实如此,在createViewFromTag()方法的内部又会去调用createView()方法,然后使用反射的方式创建出View的实例并返回。
这里只是创建出了一个根布局的实例,接下来调用rInflate()
方法来循环遍历这个根布局下的子元素
private void rInflate(XmlPullParser parser, View parent, final AttributeSet attrs)
throws XmlPullParserException, IOException {
final int depth = parser.getDepth();
int type;
while (((type = parser.next()) != XmlPullParser.END_TAG ||
parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
if (type != XmlPullParser.START_TAG) {
continue;
}
final String name = parser.getName();
if (TAG_REQUEST_FOCUS.equals(name)) {
parseRequestFocus(parser, parent);
} else if (TAG_INCLUDE.equals(name)) {
if (parser.getDepth() == 0) {
throw new InflateException("<include /> cannot be the root element");
}
parseInclude(parser, parent, attrs);
} else if (TAG_MERGE.equals(name)) {
throw new InflateException("<merge /> must be the root element");
} else {
final View view = createViewFromTag(name, attrs);
final ViewGroup viewGroup = (ViewGroup) parent;
final ViewGroup.LayoutParams params = viewGroup.generateLayoutParams(attrs);
rInflate(parser, view, attrs);
viewGroup.addView(view, params);
}
}
parent.onFinishInflate();
}
可以看到,同样是createViewFromTag()
方法来创建View的实例,然后还会递归调用rInflate()
方法来查找这个View下的子元素,每次递归完成后则将这个View添加到父布局当中。
这样的话,把整个布局文件都解析完成后就形成了一个完整的DOM结构,最终会把最顶层的根布局返回,至此inflate()过程全部结束。
inflate三个参数的方法重载
inflate(int resource, ViewGroup root, boolean attachToRoot)
如果root为null,attachToRoot不管是true还是false,返回的result都是temp,attachToRoot没有意义(都是走result = temp语句);
如果root不为null,attachToRoot设为true,则会给加载的布局文件的指定一个父布局,即root(会走root.addView(temp, params)这条语句,将temp增加到root中);
如果root不为null,attachToRoot设为false,则会将布局文件最外层的所有layout属性进行设置,当该view被添加到父view当中时,这些layout属性会自动生效(会走temp.setLayoutParams(params)这条语句,将最外层的属性设置给temp);
在不设置attachToRoot参数的情况下,attachToRoot = (root != null); root为null,attachToRoot 为false,root不为null,attachToRoot 为true。
解决问题
分析到这,在看看上面的问题,貌似有点清晰了
View view = LayoutInflater.from(this).inflate(R.layout.item_view, null);
mLayout.addview(view);
把 inflate 第二个参数 null(root)改成 mLayout,加上 false
View view = LayoutInflater.from(this).inflate(R.layout.item_view, mLayout, flase);
mLayout.addview(view);
这有设置的参数就有效果了~