在 Android 上调整 GridView 中的图像大小
我按照本教程创建一个 GridView:
这行:
imageView.setLayoutParams(new GridView.LayoutParams(85, 85));
尺寸 85x85 对于我的 Wildfire 来说非常好,但在 HTC Desire 上它看起来很小。 如何根据屏幕更改图像大小?
我有 2 种不同的布局,但 Gridview 在 XML 文件中没有任何属性来更改图像大小。
I follow this tutorial to create a GridView:
This line:
imageView.setLayoutParams(new GridView.LayoutParams(85, 85));
Size 85x85 is great for my Wildfire, but on HTC Desire it looks very small.
How can I change the image size according to the screen?
I have 2 different layouts, but Gridview
hasn't any attribute in the XML files to change the image size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试根据当前设备的像素密度进行调整。
You could try to make an adjustment based off the pixel density of the current device you are on.
与 willytate 的答案类似,但你最好创建一个 dimension< /a> xml 中的值(85dp)并像这样检索它:
这样,宽度/高度的大小将保持一致,而无需您担心太多。
Similar to willytate's answer, but you're better off creating a dimension value in an xml (for 85dp) and retrieving it like so:
That way, the width/height will be sized consistently, without you having to worry about much.