如何将膨胀视图添加到线性布局
如何膨胀视图并将其添加到 LinearLayout 的子视图列表中?
How do you inflate a view and add it to a the list of child views of a LinearLayout
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您调用 inflater 构造函数时,将
attachToRoot
设置为 false;然后在初始化视图后手动添加视图。否则,除了添加的第一个子项之外,您将丢失所有项的初始化。示例:
不该做什么的示例:
When you call the inflater constructor, set
attachToRoot
to false; then manually add the view after you've initialized it. Otherwise, you'll lose your initialization for all but the first child added.Example:
An example of what not to do: