从 xml 读取表格时为 null TableLayout

发布于 2024-11-09 15:54:35 字数 334 浏览 6 评论 0原文

我想询问有关 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

‘画卷フ 2024-11-16 15:54:35

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.

一片旧的回忆 2024-11-16 15:54:35

我的问题解决了..
我用了 table.removeAllViews();而不是 mainLayout.removeAllViews();

My problem solved..
I used table.removeAllViews(); instead of mainLayout.removeAllViews();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文