Android 平板电脑蜂巢上的小部件大小
我有一个小部件,其最小尺寸为 250dp x 180 dp,遵循 android 小部件尺寸 设计指南。这应该需要 4*3 个单元格。它在带有姜饼和冰淇淋三明治的手机上运行良好,但是当在蜂窝上添加我的小部件时,我发现它只占用 3*2 单元格,并且我的小部件不完全可见。
更新使小部件可调整大小时,手动调整大小后看起来不错,但现在的问题在于初始尺寸。
我有什么遗漏的吗?
I have a widget whose min size is 250dp x 180 dp following android widget size
design guidelines. This should take 4*3 cells. It's working well on phones with gingerbread and ice cream sandwich but when adding my widget on honeycomb I see it occupy only 3*2 cells and my widget isn't completely visible.
Update when making the widget resizable it appears good after manually resizing it, but the problem now is with the initial dimensions.
Is there any thing I am missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@mmohab
尝试使用旧公式
width_of_widget = (行数* 74) - 2
小部件高度 = (numcols* 74) - 2
在我的三星选项卡上,使用新公式(70 × n − 30),4x2 显示为 3x2。
仅在使用旧配方后。我的三星选项卡上的小部件大小符合预期 - 4x2
@mmohab
try using old formula
width_of_widget = (numrows* 74) - 2
height_of_widget = (numcols* 74) - 2
on my samsung tab using new formula(70 × n − 30), 4x2 was appearing 3x2.
only after using old formula. Widget size on my samsung tab came as expected - 4x2