特定于移动设备的 LayoutParams
在我的应用程序中..我使用imageView.setLayoutParams(new GridView.LayoutParams(85, 85));
现在我的问题是它在某些手机中看起来不太好..
如何使其具体化到移动设备或根据分辨率我必须更改
LayoutParams
..
提前致谢..
编辑:我有一个 GridView
和 SlidingDrawer
> 在布局中.. GridView
的大小为 3x3
In my application.. Im usingimageView.setLayoutParams(new GridView.LayoutParams(85, 85));
Now my problem is its not looking good in some mobiles..
How to make this specific to a mobile or according to the resolution i have to change the
LayoutParams
..
Thanks in advance..
EDIT: Im having a GridView
and the SlidingDrawer
in the layout.. The GridView
is of size 3x3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 LayoutParams.WRAP_CONTENT 或 LayoutParams.FILL_PARENT 而不是值 85
Try using LayoutParams.WRAP_CONTENT or LayoutParams.FILL_PARENT instead of values 85
尽量避免使用绝对值。如果您向我们展示您的布局的其余部分,或者至少告诉我们您想要做什么,我们也许可以提供更多帮助。
Try to avoid using absolute values. If you show us the rest of your layout, or at least tell us what you are trying to do, we may be able to help a bit more.