GridView 还是 TableLayout?
http://img683.imageshack.us/img683/645/weatherscreenmockupoutl.png
我问自己编写此布局的最佳方法是什么。基本上我只需要知道如何获得宽度相等的七列。
提前致谢!
http://img683.imageshack.us/img683/645/weatherscreenmockupoutl.png
I am asking myself whats the best way to code this layout. Basicly i just need to know how to get seven columns with an equal width.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您想要相同的宽度,您可以选择具有相同权重的子级的 LinearLayout 。查看以下 xml。
if it is the equal width that you want, you can go for linearLayout with children of equal weight. check out the following xml.
TableLayout
似乎更好,因为列数不会改变。使用GridView
,您必须添加适配器和其他内容。TableLayout
seems better, because the number of columns won't change. WithGridView
you have to add adapters and stuff.您可以将TableLayout与TableRow很好地结合起来,并根据需要制作行和列,非常容易。
这是一个带有 4 个按钮的 2x2 网格的示例(例如放在 LinearLayout 中):
You can make a good combination of TableLayout with TableRow, and make rows and columns as you want, very easy.
This is an example with 2x2 grid with 4 buttons (put insidea a LinearLayout for example):
最好的是使用网格视图。尝试这样的事情:
The best is to use a gridview. Try someothing like this :
试试这个..
try this..