setShowDividers 的 NoSuchMethod 异常
我想显示一种 ListView,每个项目之间带有分隔线。因为此列表的每一行都会显示不同的自定义视图,所以我认为使用 TableLayout 并使用 setShowDividers
和 SHOW_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用什么 API 目标?
setShowDividers
已在 API 级别 11 (Honeycomb) 中添加。What API target are you using?
setShowDividers
was added in API level 11 (Honeycomb).