移动设备的 Kivy 窗口大小
我正在 PC 上编写 kivy 应用程序。最后,我将在我的 Android 手机(redmi note 9 pro)上将其转换为 .apk。我应该选择哪种窗户尺寸?使用这个特定的窗口大小进行编码会更容易(在特定位置添加按钮和文本)。
以及如何做。因为我听说使用 window.size
不好/不起作用。
谢谢
I am coding kivy app on PC. At the end, I will convert it to .apk on my android phone (redmi note 9 pro). Which window size should I choose? It will be easier to code with this specific window size (add buttons and text on specific place).
And how to do it. Because I heard that using window.size
is not good/not working.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常更好的主意是不要针对特定的窗口大小进行编码,而是以这样的方式对 gui 进行编码,无论窗口大小如何,它都会尝试执行一些明智的操作。例如,您的应用程序的顶部可能有一个始终为 40dp 高的导航栏,然后应用程序的其余部分被其他内容占据,这些内容会不断增长以填充所有可用空间。
当然,如果您愿意,您可以将整个 gui 编码为固定大小,但这可能不是最好的解决方案。
It's usually a better idea not to code for a specific window size, but to code the gui in such a way that regardless of the window size it tries to do something sensible. For instance, your app might have a navigation bar at the top that is always 40dp high, then the rest of the app is taken up by something else that grows to fill all the available space.
You can code the whole gui to a fixed size if you want of course, but it probably isn't the best solution.