用图像网格填充屏幕的最佳方法
我正在用 java 编写一个 Android 应用程序,我希望能够在所有手机屏幕尺寸和分辨率上使用它。我需要创建一个 4x4 的图像数组(都是正方形且大小相等)。我希望图像能够扩展,使其宽度基本上是屏幕宽度除以 4。
我首先尝试了 RelativeLayout
,但无法弄清楚。我认为 TableLayout
可能是可行的方法,但如果我只是拉伸列,则不一定会拉伸单元格内的图像,对吗?我需要拉伸图像,而不仅仅是柱子。
有什么想法吗?
I'm writing an Android app in java that I want to be able to use across all phone screen sizes and resolutions. I need to create a 4x4 array of images (all square and equal in size). I want the images to expand such that they're width is basically the screen width divided by 4.
I first tried a RelativeLayout
, but can't figure it out. I figure TableLayout
is probably the way to go, but if I just stretch columns, that won't necessarily stretch the images within the cells, right? I need the images to stretch, not just the columns.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 这个布局由 Romain Guy 称为 GridLayout。您只需 addview() 您的图像视图即可。享受
Take a look at this Layout called GridLayout by Romain Guy. You simply addview() your imageviews .Enjoy