setShowDividers 的 NoSuchMethod 异常

发布于 2024-12-18 23:57:55 字数 444 浏览 3 评论 0原文

我想显示一种 ListView,每个项目之间带有分隔线。因为此列表的每一行都会显示不同的自定义视图,所以我认为使用 TableLayout 并使用 setShowDividersSHOW_DIVIDER_MIDDLE 来显示之间的白线会更容易每个项目。

为什么我在 setShowDividers 处收到 NoSuchMethod 异常?

 TableLayout table = (TableLayout)findViewById(R.id.my_table_layout);
 if( table != null )
 {
      table.setShowDividers(TableLayout.SHOW_DIVIDER_MIDDLE);
 }

如果我将所有内容都转换为 LinearLayout,我也会得到同样的错误。

I would like to display a sort of ListView with divider lines between each item. Because each row of this list will show a different custom view I thought it would be easier to have a TableLayout instead and use setShowDividers and SHOW_DIVIDER_MIDDLE in order to show that white line between each item.

Why do I get NoSuchMethod exception at setShowDividers?

 TableLayout table = (TableLayout)findViewById(R.id.my_table_layout);
 if( table != null )
 {
      table.setShowDividers(TableLayout.SHOW_DIVIDER_MIDDLE);
 }

I also get the same error if I cast everything to LinearLayout instead.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

失眠症患者 2024-12-25 23:57:55

您使用什么 API 目标? setShowDividers 已在 API 级别 11 (Honeycomb) 中添加。

What API target are you using? setShowDividers was added in API level 11 (Honeycomb).

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