从 xml 读取表格时为 null TableLayout
我想询问有关 TableLayout 的问题。
在我的代码中,我使用
从 xml 读取 TableLayout “TableLayout表=(TableLayout)findViewById(R.id.table);”然后我动态添加表行..
我有一个用于刷新表格的按钮。所以,当我按下按钮时,我使用
mainLayout.removeAllViews();从主布局中删除所有视图,然后
“TableLayout 表 = (TableLayout)findViewById(R.id.table);”我的结果为空..
有人知道当我第二次尝试从 xml 读取表时我得到 null 的原因吗?
i would like to ask something about TableLayout..
In my code i read TableLayout from xml using
"TableLayout table = (TableLayout)findViewById(R.id.table);" and then i add dynamically table rows..
I have a button for refreshing the table..So, when i press the button i use
mainLayout.removeAllViews(); for delete all views from main layout and then
"TableLayout table = (TableLayout)findViewById(R.id.table);" i got null as result..
Anyone knows the reason i got null when i try to read from xml for second time the table??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
findViewById 不会从 XML 加载布局。它通过 ID 查找已膨胀的视图,通常使用 setContentView 调用。
在您的示例中,您调用removeAllViews,然后尝试在层次结构中查找一个视图,它自然会返回 null,因为您刚刚删除了它们。
findViewById does not load the layout from XML. It finds views by ID that have already been inflated, generally with a setContentView call.
In your example, you call removeAllViews, then try to find a view in the hierarchy, which naturally returns null because you just removed them.
我的问题解决了..
我用了 table.removeAllViews();而不是 mainLayout.removeAllViews();
My problem solved..
I used table.removeAllViews(); instead of mainLayout.removeAllViews();