在安卓中创建精简的表格行。

huangapple go评论75阅读模式
英文:

Creating stripped TableTows in android

问题

我已经在安卓中使用Java创建并动态添加了表格布局的行。现在我想知道是否可能使这些行变得有间隔,就像在Web页面中使用Bootstrap时所做的那样。

即我现在的表格样式是:
在安卓中创建精简的表格行。

而我想要的是这样的效果:
在安卓中创建精简的表格行。

在安卓中使用Java是否有可能实现这一点,或者是否有可以用来实现这一点的库?

英文:

I have created and dynamically added rows to my table layout in android using java. Now I would like to know if it is possible to make the rows stripped like would be done using bootstrap in web pages
i.e this is what I have
在安卓中创建精简的表格行。
And what I want is something like this
在安卓中创建精简的表格行。
Is this possible in android using java or is there a library I can use to achieve this?

答案1

得分: 0

你可以在每个TableRow上设置交替的背景颜色。

另外,顺便提一下,RecyclerView 几乎总是比使用 TableLayout 更合适的解决方案。

英文:

You could just set alternating background colors on each TableRow.

Also, side not, RecyclerView is almost always the right solution instead of using TableLayout.

huangapple
  • 本文由 发表于 2020年9月2日 15:58:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/63701128.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定