这个LayoutInflater.inflate()应该用的都挺频繁的,比如你的fragment,你的适配器里面都会有用到。但它的参数的意义你都理解嘛? 有没有遇到过这样一个问题?你的适配器宽度明明设置了全部但是实际上却没有,布局错乱了,然后你苦寻无果,最后你直接在代码中动态重新设置了一次宽度,获取屏幕的宽度在代码中动态直接设置。 今天我们就来解释一下这个LayoutInflater.inflate()和上面的问题。
LayoutInflater.inflate()方法你可以传三个参数也可以参俩个参数,但意义就不同,这就需要你判断你需要哪种。 三个参数方法
public View inflate(@LayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot) {
final Resources res = getContext().getResources();
if (DEBUG) {
Log.d(TAG, "INFLATING from resource: \"" + res.getResourceName(resource) + "\" ("
+ Integer.toHexString(resource) + ")");
}
final XmlResourceParser parser = res.getLayout(resource);
try {
return inflate(parser, root, attachToRoot);
} finally {
parser.close();
}
}
二个参数方法 其实只是它帮你传了一个本质上都是调的同一个。
public View inflate(@LayoutRes int resource, @Nullable ViewGroup root) {
return inflate(resource, root, root != null);
}
我们来围绕源码说一说(上述源码是28),进去inflate方法以后主要是解析一下xml,然后再调用了一次inflate方法
return inflate(parser, root, attachToRoot);
这次的inflate方法就比较关键,你想知道的答案都在这里
public View inflate(XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot) {
synchronized (mConstructorArgs) {
Trace.traceBegin(Trace.TRACE_TAG_VIEW, "inflate");
final Context inflaterContext = mContext;
final AttributeSet attrs = Xml.asAttributeSet(parser);
Context lastContext = (Context) mConstructorArgs[0];
mConstructorArgs[0] = inflaterContext;
View result = root;
try {
// Look for the root node.
int type;
while ((type = parser.next()) != XmlPullParser.START_TAG &&
type != XmlPullParser.END_DOCUMENT) {
// Empty
}
if (type != XmlPullParser.START_TAG) {
throw new InflateException(parser.getPositionDescription()
+ ": No start tag found!");
}
final String name = parser.getName();
if (DEBUG) {
System.out.println("**************************");
System.out.println("Creating root view: "
+ name);
System.out.println("**************************");
}
if (TAG_MERGE.equals(name)) {
//注意这里 当root为null并且attachToRoot为false的时候直接抛出异常,所以当我们的root为null的时候我们的attachToroot应该也为null,接着往下看
if (root == null || !attachToRoot) {
throw new InflateException("<merge /> can be used only with a valid "
+ "ViewGroup root and attachToRoot=true");
}
rInflate(parser, root, inflaterContext, attrs, false);
} else {
// Temp is the root view that was found in the xml
//Temp是在xml中找到的根视图,根布局拿到了,接着看
final View temp = createViewFromTag(root, name, inflaterContext, attrs);
ViewGroup.LayoutParams params = null;
//当root不为空
if (root != null) {
if (DEBUG) {
System.out.println("Creating params from root: " +
root);
}
// Create layout params that match root, if supplied
//创建匹配根目录的布局参数,取到我们布局的信息,接着看
params = root.generateLayoutParams(attrs);
//划重点,如果第三个参数为false我们就把temp设置好布局信息
if (!attachToRoot) {
// Set the layout params for temp if we are not
// attaching. (If we are, we use addView, below)
temp.setLayoutParams(params);
}
}
if (DEBUG) {
System.out.println("-----> start inflating children");
}
// Inflate all children under temp against its context.
//根据上下文对temp下的所有儿童进行充气。
//通俗来说我们上面弄了一个temp根布局,所以闲着我们再把我们第一个参数中的布局全都添加到temp中。接着看
rInflateChildren(parser, temp, attrs, true);
if (DEBUG) {
System.out.println("-----> done inflating children");
}
// We are supposed to attach all the views we found (int temp)
// to root. Do that now.
//这里划重点了,这里当root不为空,第三个参数为true的时候,就是root添加temp布局,就相当于我们把第一个参数添加到了第二个参数中,然后返回,接着看
if (root != null && attachToRoot) {
root.addView(temp, params);
}
// Decide whether to return the root that was passed in or the
// top view found in xml.
//划重点,这里只要我们第三个参数为false或者第二个参数为空的时候就会走这里,这里是没什么区别的,但根据上面一个判断我们就知道这里最终返回的数据会收到第三个参数的影响,最终这个会结合上面的判单影响到我们宽高,导致布局错乱。
if (root == null || !attachToRoot) {
result = temp;
}
}
} catch (XmlPullParserException e) {
final InflateException ie = new InflateException(e.getMessage(), e);
ie.setStackTrace(EMPTY_STACK_TRACE);
throw ie;
} catch (Exception e) {
final InflateException ie = new InflateException(parser.getPositionDescription()
+ ": " + e.getMessage(), e);
ie.setStackTrace(EMPTY_STACK_TRACE);
throw ie;
} finally {
// Don't retain static reference on context.
mConstructorArgs[0] = lastContext;
mConstructorArgs[1] = null;
Trace.traceEnd(Trace.TRACE_TAG_VIEW);
}
return result;
}
}
如上我们已经把关键源码都过了一遍,最后再总结一次, 参数为 (layout1,layout2,true)的时候就是把layout1添加到layout2 参数为 (layout1,layout2,false) 的时候就是layout2辅助layout1生成根布局信息 参数为 (layout1,null) 的时候就直接返回了一个布局,没有生成布局信息
那么现在我们来说第二问题,适配器布局错乱的,我把关键代码提出来了,如果你适配器设置了 (layout,null) 这样就会导致布局错乱,原因看代码咯。所以应该改成 (layout1,layout2,false)即可。
if (!attachToRoot) {
temp.setLayoutParams(params);
}
if (root == null || !attachToRoot) {
result = temp;
}