Android LayoutInflater的inflate方法中attachToRoot的作用
程序员文章站
2024-02-21 08:45:04
...
我们在ListView的Adapter的getView方法里面经常会调用两个参数的inflate方法,
我们可能会发现layout外层的layout_width layout_height属性都没起作用,全都变成wrap_content的值了。
这个问题就是因为我们使用了错误的参数照成的, 系统在inflate layout的时候 如果传入的root为空的话 就会忽略LayoutParams.
所以在getView里面应该调用
这样在R.layout.adv_viewpager layout xml文件里面所有关于Layout的属性就都能生效。
那么attachToRoot是什么作用呢? 他会自动把layout加到View hierarchy中, 不需要手动调用root.addView,当然在Adapter.getView里面不用手动调用root.addView是因为Adapter已经帮我们做了, 所以如果我们在Adapter.getView里面传入attachToRoot为true的话,就会报错, 因为一个view不能attach两次。
Reference:
http://www.doubleencore.com/2013/05/layout-inflation-as-intended/
http://lmbj.net/blog/layoutinflater-and-layoutparams/
mInflater.inflate(R.layout.adv_viewpager, null)
我们可能会发现layout外层的layout_width layout_height属性都没起作用,全都变成wrap_content的值了。
这个问题就是因为我们使用了错误的参数照成的, 系统在inflate layout的时候 如果传入的root为空的话 就会忽略LayoutParams.
所以在getView里面应该调用
mInflater.inflate(R.layout.adv_viewpager, root, false)
这样在R.layout.adv_viewpager layout xml文件里面所有关于Layout的属性就都能生效。
那么attachToRoot是什么作用呢? 他会自动把layout加到View hierarchy中, 不需要手动调用root.addView,当然在Adapter.getView里面不用手动调用root.addView是因为Adapter已经帮我们做了, 所以如果我们在Adapter.getView里面传入attachToRoot为true的话,就会报错, 因为一个view不能attach两次。
Reference:
http://www.doubleencore.com/2013/05/layout-inflation-as-intended/
http://lmbj.net/blog/layoutinflater-and-layoutparams/
推荐阅读
-
Android LayoutInflater的inflate方法中attachToRoot的作用
-
Android开发中R.java文件丢失或无法更新的解决方法
-
Android中系统默认输入法设置的方法(输入法的显示和隐藏)
-
Android中EditText屏蔽第三方输入法表情的方法示例
-
Android开发之在程序中时时获取logcat日志信息的方法(附demo源码下载)
-
Android实现从activity中停止Service的方法
-
Android中Intent传递对象的两种方法Serializable,Parcelable
-
Android中gson、jsonobject解析JSON的方法详解
-
Android开发之获取LayoutInflater对象的方法总结
-
Android中判断网络连接状态的方法