如何在tableRow中添加tableRow?
我想制作一个这样的表格:
我已经尝试过类似的操作,但不起作用...
<TableRow>
<TextView
android:textColor="#fed570"
android:text="days"
android:padding="3dip"
android:textStyle="bold"/>
<TextView>
<TableRow>
<TextView
android:textColor="#fed570"
android:text="1"
android:padding="3dip"
android:textStyle="bold"/>
<TextView
android:textColor="#fed570"
android:text="2"
android:gravity="center"
android:padding="3dip" android:textStyle="bold"/>
//..more days
</TableRow>
</TextView>
</TableRow>
</TextView>
</TableRow>
可以创建吗?
i want to make a table like that:
i have tried something like that but is not working...
<TableRow>
<TextView
android:textColor="#fed570"
android:text="days"
android:padding="3dip"
android:textStyle="bold"/>
<TextView>
<TableRow>
<TextView
android:textColor="#fed570"
android:text="1"
android:padding="3dip"
android:textStyle="bold"/>
<TextView
android:textColor="#fed570"
android:text="2"
android:gravity="center"
android:padding="3dip" android:textStyle="bold"/>
//..more days
</TableRow>
</TextView>
</TableRow>
</TextView>
</TableRow>
Is that possible to be created?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎您不需要将所有内容都变成 TableRow,您可以将这些日子作为 TableLayout 中的简单 TextView 来完成。由于行是由列组成的,因此您希望将所有数字放入一行,因此字母“A、B、C”可以是保存传入数据的实际行。更像是一些东西..
Seems like you don't need everything to be a TableRow, you can do the days as a simple TextView in the TableLayout. Since rows are built of columns putting all of the numbers into one row is what you will want, The letters "A, B, C" can be the actual rows to hold your incoming data. Something more like..